Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/ebuild-helpers/
Date: Wed, 21 Dec 2011 19:30:19
Message-Id: 4e3a6eb60d48edddbe6a279f02b0cfc561394841.zmedico@gentoo
1 commit: 4e3a6eb60d48edddbe6a279f02b0cfc561394841
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 21 16:20:38 2011 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 21 19:30:01 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=4e3a6eb6
7
8 Strip .GCC.command.line from output files as well.
9
10 ---
11 bin/ebuild-helpers/prepstrip | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/bin/ebuild-helpers/prepstrip b/bin/ebuild-helpers/prepstrip
15 index 241caaf..1d7b3d2 100755
16 --- a/bin/ebuild-helpers/prepstrip
17 +++ b/bin/ebuild-helpers/prepstrip
18 @@ -51,7 +51,7 @@ case $(${STRIP} --version 2>/dev/null) in
19 # We'll leave out -R .note for now until we can check out the relevance
20 # of the section when it has the ALLOC flag set on it ...
21 SAFE_STRIP_FLAGS="--strip-unneeded"
22 - DEF_STRIP_FLAGS="-R .comment"
23 + DEF_STRIP_FLAGS="-R .comment -R .GCC.command.line"
24 SPLIT_STRIP_FLAGS=
25 ;;
26 esac