diff options
author | Brandon Low <lostlogic@gentoo.org> | 2003-03-01 22:12:47 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2003-03-01 22:12:47 +0000 |
commit | f2c7c52a29944f674d74a92ee4f3eac4e1e75592 (patch) | |
tree | 805ab67254226b62944d009e50c6b20acd9fbc66 /sys-devel/libperl | |
parent | emake and stuff (diff) | |
download | gentoo-2-f2c7c52a29944f674d74a92ee4f3eac4e1e75592.tar.gz gentoo-2-f2c7c52a29944f674d74a92ee4f3eac4e1e75592.tar.bz2 gentoo-2-f2c7c52a29944f674d74a92ee4f3eac4e1e75592.zip |
emake
Diffstat (limited to 'sys-devel/libperl')
-rw-r--r-- | sys-devel/libperl/ChangeLog | 5 | ||||
-rw-r--r-- | sys-devel/libperl/libperl-5.8.0.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/sys-devel/libperl/ChangeLog b/sys-devel/libperl/ChangeLog index 847d298c499f..42796190c7c9 100644 --- a/sys-devel/libperl/ChangeLog +++ b/sys-devel/libperl/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for sys-devel/libperl # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libperl/ChangeLog,v 1.7 2003/02/27 01:50:23 zwelch Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libperl/ChangeLog,v 1.8 2003/03/01 22:10:36 lostlogic Exp $ 11 Feb 2003; Guy Martin <gmsoft@gentoo.org> libperl-5.8.0.ebuild : Added hppa to keywords. @@ -10,6 +10,9 @@ *libperl-5.8.0 (06 Jan 2003) + 01 Mar 2003; Brandon Low <lostlogic@gentoo.org> libperl-5.8.0.ebuild: + Make->emake still not parallel where needed + 26 Feb 2003; Zach Welch <zwelch@gentoo.org> libperl-5.8.0.ebuild: add arm keyword diff --git a/sys-devel/libperl/libperl-5.8.0.ebuild b/sys-devel/libperl/libperl-5.8.0.ebuild index 94681a3bfab9..3ab47fd87f2f 100644 --- a/sys-devel/libperl/libperl-5.8.0.ebuild +++ b/sys-devel/libperl/libperl-5.8.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libperl/libperl-5.8.0.ebuild,v 1.8 2003/02/27 01:50:23 zwelch Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libperl/libperl-5.8.0.ebuild,v 1.9 2003/03/01 22:10:36 lostlogic Exp $ # The basic theory based on comments from Daniel Robbins <drobbins@gentoo.org>. # @@ -223,8 +223,8 @@ src_compile() { -Ud_csh \ ${myconf} || die - make -f Makefile depend || die "Couldn't make libperl.so depends" - make -f Makefile ${LIBPERL} || die "Unable to make libperl.so" + emake -f Makefile depend || die "Couldn't make libperl.so depends" + emake -f Makefile ${LIBPERL} || die "Unable to make libperl.so" mv ${LIBPERL} ${WORKDIR} else cat > config.over <<EOF @@ -262,9 +262,9 @@ sleep 10 -Ud_csh \ ${myconf} || die "Unable to configure" - make || die "Unable to make" + MAKEOPTS="${MAKEOPTS} -j1" emake || die "Unable to make" - make -i test CCDLFLAGS= + emake -i test CCDLFLAGS= fi } |