diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-12-24 14:31:59 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-12-24 14:31:59 +0000 |
commit | e640de5265f6c4ec74e99ff6eed3c957805f4eba (patch) | |
tree | cddf180ca9b7136e408b5aee861da5caa4408f6e /dev-lisp | |
parent | Version bumped. (diff) | |
download | gentoo-2-e640de5265f6c4ec74e99ff6eed3c957805f4eba.tar.gz gentoo-2-e640de5265f6c4ec74e99ff6eed3c957805f4eba.tar.bz2 gentoo-2-e640de5265f6c4ec74e99ff6eed3c957805f4eba.zip |
Use -j1 for build (bug #298209).
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'dev-lisp')
-rw-r--r-- | dev-lisp/xlispstat/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lisp/xlispstat/xlispstat-3.52.20.ebuild | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/dev-lisp/xlispstat/ChangeLog b/dev-lisp/xlispstat/ChangeLog index 9c50221868aa..4aa8a7566c5d 100644 --- a/dev-lisp/xlispstat/ChangeLog +++ b/dev-lisp/xlispstat/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lisp/xlispstat # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/xlispstat/ChangeLog,v 1.5 2009/08/10 16:36:11 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/xlispstat/ChangeLog,v 1.6 2009/12/24 14:31:59 flameeyes Exp $ + + 24 Dec 2009; Diego E. Pettenò <flameeyes@gentoo.org> + xlispstat-3.52.20.ebuild: + Use -j1 for build (bug #298209). 10 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> xlispstat-3.52.20.ebuild, +files/xlispstat-3.52.20-fmax.patch: diff --git a/dev-lisp/xlispstat/xlispstat-3.52.20.ebuild b/dev-lisp/xlispstat/xlispstat-3.52.20.ebuild index 15081bca4a5a..d7fe5c1b1a1a 100644 --- a/dev-lisp/xlispstat/xlispstat-3.52.20.ebuild +++ b/dev-lisp/xlispstat/xlispstat-3.52.20.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/xlispstat/xlispstat-3.52.20.ebuild,v 1.5 2009/08/10 16:36:11 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/xlispstat/xlispstat-3.52.20.ebuild,v 1.6 2009/12/24 14:31:59 flameeyes Exp $ inherit eutils @@ -33,13 +33,14 @@ src_compile() { --infodir=/usr/share/info \ --mandir=/usr/share/man \ ${opts} || die "./configure failed" - make UCFLAGS="${CFLAGS} -mieee-fp" || die + # bug #298209 + emake -j1 UCFLAGS="${CFLAGS} -mieee-fp" || die } src_install() { dodir /usr/bin dodir /usr/lib/xlispstat - make prefix=${D}/usr/ install || die + emake -j1 prefix=${D}/usr/ install || die dodoc COPYING INSTALL README* RELEASE dodoc doc/xlispins.doc doc/xlispdoc.{ps,txt} } |