Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/gcc-apple/
Date: Tue, 16 Jan 2018 08:43:11
Message-Id: 1516092176.cfdb1fa4210d5c0addf74e66a851b7c271bf4996.grobian@gentoo
1 commit: cfdb1fa4210d5c0addf74e66a851b7c271bf4996
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 16 08:42:29 2018 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 16 08:42:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfdb1fa4
7
8 sys-devel/gcc-apple: drop prepstrip usage, bug #587314
9
10 Prepstrip only deals with ELF, and the main consumer is using MACH-O
11 here, so it was never really run anyway.
12
13 Closes: https://bugs.gentoo.org/587314
14 Package-Manager: Portage-2.3.13, Repoman-2.3.3
15
16 sys-devel/gcc-apple/gcc-apple-4.2.1_p5666-r2.ebuild | 7 -------
17 1 file changed, 7 deletions(-)
18
19 diff --git a/sys-devel/gcc-apple/gcc-apple-4.2.1_p5666-r2.ebuild b/sys-devel/gcc-apple/gcc-apple-4.2.1_p5666-r2.ebuild
20 index 12f3d99760d..c46edae451a 100644
21 --- a/sys-devel/gcc-apple/gcc-apple-4.2.1_p5666-r2.ebuild
22 +++ b/sys-devel/gcc-apple/gcc-apple-4.2.1_p5666-r2.ebuild
23 @@ -338,13 +338,6 @@ src_install() {
24 rm -r "${D}"${LIBPATH}/include/libffi || die
25 fi
26
27 - # Now do the fun stripping stuff
28 - env RESTRICT="" CHOST=${CHOST} prepstrip "${D}${BINPATH}"
29 - env RESTRICT="" CHOST=${CTARGET} prepstrip "${D}${LIBPATH}"
30 - # gcc used to install helper binaries in lib/ but then moved to libexec/
31 - [[ -d ${ED}/usr/libexec/gcc ]] && \
32 - env RESTRICT="" CHOST=${CHOST} prepstrip "${ED}/usr/libexec/gcc/${CTARGET}/${GCC_VERS}"
33 -
34 # prune empty dirs left behind
35 find "${ED}" -type d | xargs rmdir >& /dev/null