diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-12-04 21:51:12 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-12-04 21:51:12 +0000 |
commit | 4114ec2c4a0ed399adddd2840f42579c57433058 (patch) | |
tree | 0bb99aea99e49597680336ccb9665dd2627d025f /net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild | |
parent | Masking net-misc/nstx for QA removal. (diff) | |
download | historical-4114ec2c4a0ed399adddd2840f42579c57433058.tar.gz historical-4114ec2c4a0ed399adddd2840f42579c57433058.tar.bz2 historical-4114ec2c4a0ed399adddd2840f42579c57433058.zip |
Add -j1 for build (bug #295741).
Package-Manager: portage-2.2_rc55/cvs/Linux x86_64
Diffstat (limited to 'net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild')
-rw-r--r-- | net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild b/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild index 1ac52815599c..4c40e9240d3e 100644 --- a/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild +++ b/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild,v 1.7 2008/09/25 14:42:19 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vncsnapshot/vncsnapshot-1.2a.ebuild,v 1.8 2009/12/04 21:51:12 flameeyes Exp $ inherit eutils @@ -25,7 +25,8 @@ src_unpack() { src_compile() { #note: We override CDEBUGFLAGS instead of CFLAGS because otherwise # we lost the INCLUDES in the makefile. - make CDEBUGFLAGS="${CFLAGS}" || die "make failed" + # bug #295741 + emake -j1 CDEBUGFLAGS="${CFLAGS}" || die "make failed" } # likewise, no make install (we're real Unix hackers, we are) |