From cde41c2e6f65cb16fc5e5466a6f78da46e30859b Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 24 Dec 2019 12:58:53 +0000 Subject: [PATCH] Go: Cleanup Go Path after build Go leaves temporary build files in the directory which we do not need and we should clean up after every build. Signed-off-by: Michael Tremer Signed-off-by: Arne Fitzenreiter --- lfs/Config | 4 ++++ lfs/amazon-ssm-agent | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lfs/Config b/lfs/Config index 5f606f53fc..3c552f3f07 100644 --- a/lfs/Config +++ b/lfs/Config @@ -115,6 +115,9 @@ ifeq "$(BUILD_ARCH)" "aarch64" GRUB_ARCH = arm64 endif +# Go +export GOPATH = $(HOME)/gopath + ############################################################################### # Common Macro Definitions ############################################################################### @@ -156,6 +159,7 @@ define POSTBUILD @echo "Updating linker cache..." @type -p ldconfig >/dev/null && ldconfig || : @echo "Install done; saving file list to $(TARGET) ..." + @rm -rf $(GOPATH) @$(FIND_FILES) > $(DIR_SRC)/lsalrnew @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' > $(TARGET)_diff @cp -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr diff --git a/lfs/amazon-ssm-agent b/lfs/amazon-ssm-agent index da164ced88..b477690a44 100644 --- a/lfs/amazon-ssm-agent +++ b/lfs/amazon-ssm-agent @@ -37,8 +37,6 @@ PAK_VER = 1 DEPS = "" -export GOPATH = $(HOME)/gopath - DIR_BUILD = $(GOPATH)/src/github.com/aws/amazon-ssm-agent ############################################################################### -- 2.39.5