diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-08-08 17:12:42 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-08-08 17:12:42 +0000 |
commit | 58370aeb09c30332c9ce1fe346dd747447dbcc41 (patch) | |
tree | e7a56b5d938e344a5e059bde7d225db789f5700e /sci-libs | |
parent | Stable on alpha, so udev works (diff) | |
download | gentoo-2-58370aeb09c30332c9ce1fe346dd747447dbcc41.tar.gz gentoo-2-58370aeb09c30332c9ce1fe346dd747447dbcc41.tar.bz2 gentoo-2-58370aeb09c30332c9ce1fe346dd747447dbcc41.zip |
Disable paralel emake everywhere.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/gdal/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/gdal/gdal-1.7.2.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/sci-libs/gdal/ChangeLog b/sci-libs/gdal/ChangeLog index f88713d4de20..c65319931fbb 100644 --- a/sci-libs/gdal/ChangeLog +++ b/sci-libs/gdal/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/gdal # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/ChangeLog,v 1.94 2010/07/31 19:28:40 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/ChangeLog,v 1.95 2010/08/08 17:12:42 scarabeus Exp $ + + 08 Aug 2010; Tomáš Chvátal <scarabeus@gentoo.org> gdal-1.7.2.ebuild: + Disable paralel emake everywhere. 31 Jul 2010; Tomáš Chvátal <scarabeus@gentoo.org> gdal-1.7.2.ebuild: Fix one too many : at sed line. Per bug #330515. diff --git a/sci-libs/gdal/gdal-1.7.2.ebuild b/sci-libs/gdal/gdal-1.7.2.ebuild index ec09c0f4a19f..a427d860c4ab 100644 --- a/sci-libs/gdal/gdal-1.7.2.ebuild +++ b/sci-libs/gdal/gdal-1.7.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.7.2.ebuild,v 1.3 2010/07/31 19:28:40 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.7.2.ebuild,v 1.4 2010/08/08 17:12:42 scarabeus Exp $ EAPI="3" @@ -61,6 +61,8 @@ DEPEND="${RDEPEND} AT_M4DIR="${S}/m4" +MAKEOPTS+=" -j1" + pkg_setup() { # only py2 is supported python_set_active_version 2 @@ -177,7 +179,7 @@ src_compile() { done # parallel makes fail - emake -j1 || die "emake failed" + emake || die "emake failed" if use perl ; then cd "${S}"/swig/perl |