diff options
author | Andrej Kacian <ticho@gentoo.org> | 2006-10-21 23:50:38 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2006-10-21 23:50:38 +0000 |
commit | 27eda3ef52906559945e1eebbdb85582440d4693 (patch) | |
tree | 698888be90157d4d2b27b4ea084ac272c32c8375 /app-text/tuxcards | |
parent | Add ~alpha keyword. (diff) | |
download | gentoo-2-27eda3ef52906559945e1eebbdb85582440d4693.tar.gz gentoo-2-27eda3ef52906559945e1eebbdb85582440d4693.tar.bz2 gentoo-2-27eda3ef52906559945e1eebbdb85582440d4693.zip |
Remove strip command from Makefile, so portage can decide whether or not to strip the binary. Bug #152264, by Evil Compile Person <bugs at dev.gentooexperimental.org>.
(Portage version: 2.1.2_pre3-r2)
Diffstat (limited to 'app-text/tuxcards')
-rw-r--r-- | app-text/tuxcards/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/tuxcards/tuxcards-1.2.ebuild | 6 |
2 files changed, 11 insertions, 2 deletions
diff --git a/app-text/tuxcards/ChangeLog b/app-text/tuxcards/ChangeLog index 9c5ad4d4c351..61d7b9f5aeb0 100644 --- a/app-text/tuxcards/ChangeLog +++ b/app-text/tuxcards/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/tuxcards # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/tuxcards/ChangeLog,v 1.16 2006/08/19 18:46:27 malc Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/tuxcards/ChangeLog,v 1.17 2006/10/21 23:50:38 ticho Exp $ + + 21 Oct 2006; Andrej Kacian <ticho@gentoo.org> tuxcards-1.2.ebuild: + Remove strip command from Makefile, so portage can decide whether or not to + strip the binary. Bug #152264, by Evil Compile Person <bugs at + dev.gentooexperimental.org>. 19 Aug 2006; <malc@gentoo.org> tuxcards-1.2.ebuild: Stable on amd64 diff --git a/app-text/tuxcards/tuxcards-1.2.ebuild b/app-text/tuxcards/tuxcards-1.2.ebuild index 34a5ab4fea20..30c51ceffaf8 100644 --- a/app-text/tuxcards/tuxcards-1.2.ebuild +++ b/app-text/tuxcards/tuxcards-1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/tuxcards/tuxcards-1.2.ebuild,v 1.15 2006/08/19 18:46:27 malc Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/tuxcards/tuxcards-1.2.ebuild,v 1.16 2006/10/21 23:50:38 ticho Exp $ inherit kde-functions @@ -35,6 +35,10 @@ src_compile() { # Use qt3's qmake (bug #96201) /usr/qt/3/bin/qmake tuxcards.pro + # Remove the strip command from Makefile, let portage strip if it wants to. + # (bug #152264) + sed -i -e 's/ -strip.*//' Makefile + emake || die } |