From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 4/9] strip: Do not try to strip Go binaries Date: Thu, 16 Apr 2020 19:27:09 +0000 Message-ID: <20200416192714.25542-4-michael.tremer@ipfire.org> In-Reply-To: <20200416192714.25542-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5640612097337050811==" List-Id: --===============5640612097337050811== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit There is loads of stuff for PowerPC and other architectures in the directory which we cannot strip. Therefore we ignore the whole directory. Signed-off-by: Michael Tremer --- lfs/strip | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lfs/strip b/lfs/strip index 08aaee7c4..63e90fed2 100644 --- a/lfs/strip +++ b/lfs/strip @@ -61,4 +61,5 @@ $(TARGET) : # /usr/sbin/vdr. STRIP=$(STRIP) $(SHELL) $(DIR_SRC)/src/stripper $(ROOT) \ --exclude=/usr/src --exclude=$(TOOLS_DIR) \ - --exclude=/usr/sbin/vdr --exclude=/usr/lib/vdr + --exclude=/usr/sbin/vdr --exclude=/usr/lib/vdr \ + --exclude=/usr/lib/go -- 2.20.1 --===============5640612097337050811==--