Skip to content

Commit 2c6ebb6

Browse files
committed
Remove .EXPORT_ALL_VARIABLES from common.mk
Signed-off-by: Tobias Giese <[email protected]>
1 parent 1b66d96 commit 2c6ebb6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ MOCKGEN := $(TOOLS_BIN_DIR)/mockgen
5454
RELEASE_NOTES := $(TOOLS_BIN_DIR)/release-notes
5555

5656
PATH := $(abspath $(TOOLS_BIN_DIR)):$(PATH)
57-
DOCKER_CLI_EXPERIMENTAL=enabled
58-
DOCKER_BUILDKIT=1
57+
export PATH
58+
export DOCKER_CLI_EXPERIMENTAL=enabled
59+
export DOCKER_BUILDKIT=1
5960

6061
PODMAN ?= 0
6162
ifeq ($(PODMAN), 1)

common.mk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ include $(ROOT_DIR_RELATIVE)/versions.mk
1717
# Ensure Make is run with bash shell as some syntax below is bash-specific
1818
SHELL:=bash
1919
.ONESHELL:
20-
.EXPORT_ALL_VARIABLES:
2120
.SHELLFLAGS := -eu -o pipefail -c
2221
.DELETE_ON_ERROR:
2322
MAKEFLAGS += --no-builtin-rules

0 commit comments

Comments
 (0)