diff options
author | Stefan Jones <cretin@gentoo.org> | 2002-11-17 17:42:26 +0000 |
---|---|---|
committer | Stefan Jones <cretin@gentoo.org> | 2002-11-17 17:42:26 +0000 |
commit | e713f875a465476b6e9a130e63b21df1f7719c50 (patch) | |
tree | 3d0c60ef7f75aa62f747ffb85383eb8a099e1ccb /sys-libs/zlib | |
parent | new version with superfast depscan.sh (diff) | |
download | historical-e713f875a465476b6e9a130e63b21df1f7719c50.tar.gz historical-e713f875a465476b6e9a130e63b21df1f7719c50.tar.bz2 historical-e713f875a465476b6e9a130e63b21df1f7719c50.zip |
Use -fPIC by default, stop non-PIC shared library errors
Diffstat (limited to 'sys-libs/zlib')
-rw-r--r-- | sys-libs/zlib/zlib-1.1.4.ebuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys-libs/zlib/zlib-1.1.4.ebuild b/sys-libs/zlib/zlib-1.1.4.ebuild index f022adb2606a..6d3d7914f649 100644 --- a/sys-libs/zlib/zlib-1.1.4.ebuild +++ b/sys-libs/zlib/zlib-1.1.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.1.4.ebuild,v 1.10 2002/11/05 20:38:54 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.1.4.ebuild,v 1.11 2002/11/17 17:42:26 cretin Exp $ S="${WORKDIR}/${P}" DESCRIPTION="Standard (de)compression library" @@ -17,11 +17,7 @@ src_compile() { ./configure --shared --prefix=/usr || die - if [ "${ARCH}" = "alpha" ] ; then - emake CFLAGS="${CFLAGS} -fPIC" || die - else - emake || die - fi + emake CFLAGS="${CFLAGS} -fPIC" || die make test || die |