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 | 1eeb2bccf3700c98dea3def4ff4cb804345c983e (patch) | |
tree | 5a76c5001ebe59058be2ec8635b53be3a8b6814d /sys-libs | |
parent | new version with superfast depscan.sh (diff) | |
download | gentoo-2-1eeb2bccf3700c98dea3def4ff4cb804345c983e.tar.gz gentoo-2-1eeb2bccf3700c98dea3def4ff4cb804345c983e.tar.bz2 gentoo-2-1eeb2bccf3700c98dea3def4ff4cb804345c983e.zip |
Use -fPIC by default, stop non-PIC shared library errors
Diffstat (limited to 'sys-libs')
-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 |