diff options
author | Thomas Beierlein <tomjbe@gentoo.org> | 2010-07-24 15:39:14 +0000 |
---|---|---|
committer | Thomas Beierlein <tomjbe@gentoo.org> | 2010-07-24 15:39:14 +0000 |
commit | 03183cf9cae3fda824e1ac9dde8185811ee75b1f (patch) | |
tree | 9830d8289f7aa94d316efaef1df2ecc2e81cb1e4 | |
parent | old (diff) | |
download | gentoo-2-03183cf9cae3fda824e1ac9dde8185811ee75b1f.tar.gz gentoo-2-03183cf9cae3fda824e1ac9dde8185811ee75b1f.tar.bz2 gentoo-2-03183cf9cae3fda824e1ac9dde8185811ee75b1f.zip |
Add missing 'emake -j1' for install, as per bug #277644.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
-rw-r--r-- | sci-electronics/ghdl/ChangeLog | 6 | ||||
-rw-r--r-- | sci-electronics/ghdl/ghdl-0.27.ebuild | 4 | ||||
-rw-r--r-- | sci-electronics/ghdl/ghdl-0.29.ebuild | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/sci-electronics/ghdl/ChangeLog b/sci-electronics/ghdl/ChangeLog index 5f3db88492c4..0d650a11e1da 100644 --- a/sci-electronics/ghdl/ChangeLog +++ b/sci-electronics/ghdl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-electronics/ghdl # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ghdl/ChangeLog,v 1.12 2010/05/20 03:10:44 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ghdl/ChangeLog,v 1.13 2010/07/24 15:39:14 tomjbe Exp $ + + 24 Jul 2010; Thomas Beierlein <tomjbe@gentoo.org> ghdl-0.27.ebuild, + ghdl-0.29.ebuild: + Add missing 'emake -j1' for install, as per bug #277644. 20 May 2010; Jeremy Olexa <darkside@gentoo.org> ghdl-0.27.ebuild: QA: Fix SRC_URI diff --git a/sci-electronics/ghdl/ghdl-0.27.ebuild b/sci-electronics/ghdl/ghdl-0.27.ebuild index 2a39c4d01bf7..72428107a437 100644 --- a/sci-electronics/ghdl/ghdl-0.27.ebuild +++ b/sci-electronics/ghdl/ghdl-0.27.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-electronics/ghdl/ghdl-0.27.ebuild,v 1.4 2010/05/20 03:10:44 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ghdl/ghdl-0.27.ebuild,v 1.5 2010/07/24 15:39:14 tomjbe Exp $ EAPI="2" @@ -61,7 +61,7 @@ src_compile() { src_install() { # bug #277644 - PATH="${GNATGCC_PATH}:${PATH}" emake DESTDIR="${D}" install || die "Installation failed" + PATH="${GNATGCC_PATH}:${PATH}" emake -j1 DESTDIR="${D}" install || die "Installation failed" cd "${D}"/usr/bin ; rm `ls --ignore=ghdl` rm -rf "${D}"/usr/include diff --git a/sci-electronics/ghdl/ghdl-0.29.ebuild b/sci-electronics/ghdl/ghdl-0.29.ebuild index 08aba4ec60f3..6664a7c3bdcf 100644 --- a/sci-electronics/ghdl/ghdl-0.29.ebuild +++ b/sci-electronics/ghdl/ghdl-0.29.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-electronics/ghdl/ghdl-0.29.ebuild,v 1.1 2010/03/21 19:34:45 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ghdl/ghdl-0.29.ebuild,v 1.2 2010/07/24 15:39:14 tomjbe Exp $ EAPI="2" @@ -61,7 +61,7 @@ src_compile() { src_install() { # bug #277644 - PATH="${GNATGCC_PATH}:${PATH}" emake DESTDIR="${D}" install || die "Installation failed" + PATH="${GNATGCC_PATH}:${PATH}" emake -j1 DESTDIR="${D}" install || die "Installation failed" cd "${D}"/usr/bin ; rm `ls --ignore=ghdl` rm -rf "${D}"/usr/include |