diff options
author | 2005-09-03 19:49:58 +0000 | |
---|---|---|
committer | 2005-09-03 19:49:58 +0000 | |
commit | 31736c5024ae625aa7c71ca9b4f96c0d15efd11d (patch) | |
tree | 2dcdbacc4da3a473b7e7599d1f6b159b696753ac /app-shells/bash/bash-3.0-r12.ebuild | |
parent | bug 80343 (diff) | |
download | gentoo-2-31736c5024ae625aa7c71ca9b4f96c0d15efd11d.tar.gz gentoo-2-31736c5024ae625aa7c71ca9b4f96c0d15efd11d.tar.bz2 gentoo-2-31736c5024ae625aa7c71ca9b4f96c0d15efd11d.zip |
fixing parallel build problems using 'emake -j1' (see bug 102426)
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-shells/bash/bash-3.0-r12.ebuild')
-rw-r--r-- | app-shells/bash/bash-3.0-r12.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-shells/bash/bash-3.0-r12.ebuild b/app-shells/bash/bash-3.0-r12.ebuild index 8df0e85e6a61..76794214bf51 100644 --- a/app-shells/bash/bash-3.0-r12.ebuild +++ b/app-shells/bash/bash-3.0-r12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.0-r12.ebuild,v 1.5 2005/08/29 23:35:58 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.0-r12.ebuild,v 1.6 2005/09/03 19:49:58 sbriesen Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -127,7 +127,7 @@ src_compile() { ${myconf} || die # Make sure we always link statically with ncurses sed -i "/^TERMCAP_LIB/s:-lncurses:-Wl,-Bstatic -lncurses -Wl,-Bdynamic:" Makefile || die "sed failed" - emake || die "make failed" + emake -j1 || die "make failed" # see bug 102426 } src_install() { |