From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/3] Go: Cleanup Go Path after build
Date: Tue, 24 Dec 2019 12:58:53 +0000 [thread overview]
Message-ID: <20191224125854.11552-2-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20191224125854.11552-1-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1513 bytes --]
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 <michael.tremer(a)ipfire.org>
---
lfs/Config | 4 ++++
lfs/amazon-ssm-agent | 2 --
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/lfs/Config b/lfs/Config
index f597b8c65..d17600820 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 da164ced8..b477690a4 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.20.1
next prev parent reply other threads:[~2019-12-24 12:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-24 12:58 [PATCH 1/3] amazon-ssm-agent: New package Michael Tremer
2019-12-24 12:58 ` Michael Tremer [this message]
2019-12-24 12:58 ` [PATCH 3/3] Go: Move the cache to the ccache directory Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191224125854.11552-2-michael.tremer@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox