diff options
author | 2004-02-27 19:30:35 +0000 | |
---|---|---|
committer | 2004-02-27 19:30:35 +0000 | |
commit | 72f6e5b6212b8c9d5b04b2bbae0a756ced2d8742 (patch) | |
tree | 31b7bc472796d08cf738e41b060bdaf3c476b6bd /sys-apps/util-linux | |
parent | use emake -j1 instaed of overriding MAKEOPTS (diff) | |
download | gentoo-2-72f6e5b6212b8c9d5b04b2bbae0a756ced2d8742.tar.gz gentoo-2-72f6e5b6212b8c9d5b04b2bbae0a756ced2d8742.tar.bz2 gentoo-2-72f6e5b6212b8c9d5b04b2bbae0a756ced2d8742.zip |
move the filter-flags statement into src_compile
Diffstat (limited to 'sys-apps/util-linux')
-rw-r--r-- | sys-apps/util-linux/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/util-linux/util-linux-2.11z-r8.ebuild | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/sys-apps/util-linux/ChangeLog b/sys-apps/util-linux/ChangeLog index 844e62a269d3..a68c1fd83489 100644 --- a/sys-apps/util-linux/ChangeLog +++ b/sys-apps/util-linux/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/util-linux # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.69 2004/02/22 20:50:14 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.70 2004/02/27 19:28:37 seemant Exp $ + + 27 Feb 2004; Seemant Kulleen <seemant@gentoo.org> + util-linux-2.11z-r8.ebuild: + move the filter-flags statement into src_compile 22 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> util-linux-2.12-r5.ebuild: Add installation of rdev on amd64. Closing #35902. diff --git a/sys-apps/util-linux/util-linux-2.11z-r8.ebuild b/sys-apps/util-linux/util-linux-2.11z-r8.ebuild index 413e6c9024c9..13bbfca25cd8 100644 --- a/sys-apps/util-linux/util-linux-2.11z-r8.ebuild +++ b/sys-apps/util-linux/util-linux-2.11z-r8.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.11z-r8.ebuild,v 1.2 2004/02/23 00:53:40 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.11z-r8.ebuild,v 1.3 2004/02/27 19:28:37 seemant Exp $ IUSE="crypt nls static pam" @@ -8,7 +8,6 @@ inherit eutils flag-o-matic ## see below for details on pic.patch # Added back for now until other archs can be tested. -filter-flags -fPIC S="${WORKDIR}/${P}" CRYPT_PATCH_P="${P}-crypt-gentoo" @@ -95,6 +94,8 @@ src_unpack() { src_compile() { + filter-flags -fPIC + if [ "`use static`" ] ; then append-ldflags "-static" fi |