diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-11-15 09:42:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-11-15 09:42:00 +0000 |
commit | 41c0e98c992f13cfae60423fd874589cd7f9cfaf (patch) | |
tree | 2a56ab9fb0df4ad62aaa0c191ee2610a6895cd20 /sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.3.ebuild | |
parent | Version bump. (diff) | |
download | historical-41c0e98c992f13cfae60423fd874589cd7f9cfaf.tar.gz historical-41c0e98c992f13cfae60423fd874589cd7f9cfaf.tar.bz2 historical-41c0e98c992f13cfae60423fd874589cd7f9cfaf.zip |
Do not export STRIP as portage uses that when stripping things ... just pass it along to the build system directly.
Package-Manager: portage-2.2_rc14/cvs/Linux 2.6.27.4 x86_64
Diffstat (limited to 'sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.3.ebuild')
-rw-r--r-- | sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.3.ebuild | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.3.ebuild b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.3.ebuild index e1eb8b12b7f7..63289eb5d706 100644 --- a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.3.ebuild +++ b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.3.ebuild,v 1.1 2008/10/18 16:42:25 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.3.ebuild,v 1.2 2008/11/15 09:42:00 vapier Exp $ inherit flag-o-matic toolchain-funcs @@ -22,7 +22,6 @@ DEPEND="nls? ( sys-devel/gettext ) src_compile() { export LDCONFIG=/bin/true export CC=$(tc-getCC) - export STRIP=/bin/true # We want to use the "bsd" libraries while building on Darwin, but while # building on other Gentoo/*BSD we prefer elf-naming scheme. @@ -37,15 +36,14 @@ src_compile() { $(use_enable !elibc_uclibc tls) \ $(use_enable nls) \ || die - emake || die + emake STRIP=/bin/true || die } src_install() { export LDCONFIG=/bin/true export CC=$(tc-getCC) - export STRIP=/bin/true - emake DESTDIR="${D}" install || die + emake STRIP=/bin/true DESTDIR="${D}" install || die dodir /$(get_libdir) local lib slib |