From 2c6ebb618e72a445c94775b9405231316c7ae626 Mon Sep 17 00:00:00 2001 From: Tobias Giese Date: Thu, 4 Nov 2021 15:38:47 +0100 Subject: [PATCH] Remove .EXPORT_ALL_VARIABLES from common.mk Signed-off-by: Tobias Giese --- Makefile | 5 +++-- common.mk | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5cadef38e4..672c96267f 100644 --- a/Makefile +++ b/Makefile @@ -54,8 +54,9 @@ MOCKGEN := $(TOOLS_BIN_DIR)/mockgen RELEASE_NOTES := $(TOOLS_BIN_DIR)/release-notes PATH := $(abspath $(TOOLS_BIN_DIR)):$(PATH) -DOCKER_CLI_EXPERIMENTAL=enabled -DOCKER_BUILDKIT=1 +export PATH +export DOCKER_CLI_EXPERIMENTAL=enabled +export DOCKER_BUILDKIT=1 PODMAN ?= 0 ifeq ($(PODMAN), 1) diff --git a/common.mk b/common.mk index 44211768a7..ec092e7f1a 100644 --- a/common.mk +++ b/common.mk @@ -17,7 +17,6 @@ include $(ROOT_DIR_RELATIVE)/versions.mk # Ensure Make is run with bash shell as some syntax below is bash-specific SHELL:=bash .ONESHELL: -.EXPORT_ALL_VARIABLES: .SHELLFLAGS := -eu -o pipefail -c .DELETE_ON_ERROR: MAKEFLAGS += --no-builtin-rules