diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-03-30 02:57:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-03-30 02:57:36 +0000 |
commit | 0f703dd04b7afc442ef15671036e46ba2f304537 (patch) | |
tree | 42156566c48d8d0ff4f4aa9e8e16ff74305ec7c0 /sys-apps/findutils | |
parent | hppa stable (diff) | |
download | historical-0f703dd04b7afc442ef15671036e46ba2f304537.tar.gz historical-0f703dd04b7afc442ef15671036e46ba2f304537.tar.bz2 historical-0f703dd04b7afc442ef15671036e46ba2f304537.zip |
use gnuconfig_update
Diffstat (limited to 'sys-apps/findutils')
-rw-r--r-- | sys-apps/findutils/findutils-4.1.20-r1.ebuild | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/sys-apps/findutils/findutils-4.1.20-r1.ebuild b/sys-apps/findutils/findutils-4.1.20-r1.ebuild index 6705f2204b91..e7252493c044 100644 --- a/sys-apps/findutils/findutils-4.1.20-r1.ebuild +++ b/sys-apps/findutils/findutils-4.1.20-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/findutils-4.1.20-r1.ebuild,v 1.13 2004/03/24 01:16:22 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/findutils-4.1.20-r1.ebuild,v 1.14 2004/03/30 02:57:36 vapier Exp $ inherit eutils flag-o-matic gnuconfig @@ -30,14 +30,10 @@ src_unpack() { unpack ${A} cd ${S} - if [ "${ARCH}" == "ppc64" ] || [ "${ARCH}" == "sh" ] ; then - # need to make sure the autotool files are updated to support - # these architectures - libtoolize -c -f || die "libtool failed" - aclocal || die "aclocal failed" - automake -c -f -a || die "automake failed" - autoconf || die "autoconf failed" - fi + # Detect new systems properly + use mips && gnuconfig_update + use ppc64 && gnuconfig_update + use sh && gnuconfig_update # Don't build or install locate because it conflicts with slocate, # which is a secure version of locate. See bug 18729 @@ -50,10 +46,6 @@ src_unpack() { } src_compile() { - - # Detect mips systems properly - use mips && gnuconfig_update - if use afs ; then append-flags -I/usr/afsws/include append-ldflags -lpam |