diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2005-05-10 12:45:01 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2005-05-10 12:45:01 +0000 |
commit | e40a84566ebde4bc160a1c7b1bea9e7b01e261f9 (patch) | |
tree | 81ea5ce724fecb95e900e461252bbe4de3775788 /net-misc/axel | |
parent | - initial creation of qfile package. A very small and fast c implementation o... (diff) | |
download | gentoo-2-e40a84566ebde4bc160a1c7b1bea9e7b01e261f9.tar.gz gentoo-2-e40a84566ebde4bc160a1c7b1bea9e7b01e261f9.tar.bz2 gentoo-2-e40a84566ebde4bc160a1c7b1bea9e7b01e261f9.zip |
let portage handle stripping
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-misc/axel')
-rw-r--r-- | net-misc/axel/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/axel/axel-1.0b.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/net-misc/axel/ChangeLog b/net-misc/axel/ChangeLog index 567ee38f819f..456ee353d1b8 100644 --- a/net-misc/axel/ChangeLog +++ b/net-misc/axel/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/axel # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/axel/ChangeLog,v 1.19 2005/04/11 20:29:56 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/axel/ChangeLog,v 1.20 2005/05/10 12:45:01 taviso Exp $ + + 10 May 2005; Tavis Ormandy <taviso@gentoo.org> axel-1.0b.ebuild: + portage should handle the stripping so as not to override nostrip. 11 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org> axel-1.0b.ebuild: Stable on sparc wrt #88264 diff --git a/net-misc/axel/axel-1.0b.ebuild b/net-misc/axel/axel-1.0b.ebuild index b210b2d90023..3394eb3325d7 100644 --- a/net-misc/axel/axel-1.0b.ebuild +++ b/net-misc/axel/axel-1.0b.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/axel/axel-1.0b.ebuild,v 1.4 2005/04/11 20:29:56 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/axel/axel-1.0b.ebuild,v 1.5 2005/05/10 12:45:01 taviso Exp $ DESCRIPTION="light Unix download accelerator" HOMEPAGE="http://wilmer.gaast.net/main.php/axel.html" @@ -16,8 +16,9 @@ DEPEND="virtual/libc" src_compile() { local myconf - use debug && myconf="--debug=1 --strip=0" + use debug && myconf="--debug=1" econf \ + --strip=0 \ --etcdir=/etc \ ${myconf} \ || die |