diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-07-23 15:45:52 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-07-23 15:45:52 +0000 |
commit | 0ca2d4c0790b9c3422e4c8e0a90afdd2a999a418 (patch) | |
tree | df2162669b89c2048d54537cdc68bf80e663fad9 /games-board | |
parent | Fix spandsp dep (diff) | |
download | gentoo-2-0ca2d4c0790b9c3422e4c8e0a90afdd2a999a418.tar.gz gentoo-2-0ca2d4c0790b9c3422e4c8e0a90afdd2a999a418.tar.bz2 gentoo-2-0ca2d4c0790b9c3422e4c8e0a90afdd2a999a418.zip |
use just the -j part of MAKEOPTS
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/pouetchess/ChangeLog | 6 | ||||
-rw-r--r-- | games-board/pouetchess/pouetchess-0.2.0-r1.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/games-board/pouetchess/ChangeLog b/games-board/pouetchess/ChangeLog index a182cf5c9a4a..131bed4cc51e 100644 --- a/games-board/pouetchess/ChangeLog +++ b/games-board/pouetchess/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-board/pouetchess # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pouetchess/ChangeLog,v 1.12 2009/04/07 01:21:05 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/pouetchess/ChangeLog,v 1.13 2009/07/23 15:45:52 mr_bones_ Exp $ + + 23 Jul 2009; Michael Sterrett <mr_bones_@gentoo.org> + pouetchess-0.2.0-r1.ebuild: + use just the -j part of MAKEOPTS 07 Apr 2009; Michael Sterrett <mr_bones_@gentoo.org> pouetchess-0.2.0-r1.ebuild: diff --git a/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild b/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild index 3bc8f5a83060..09c1f75d1a79 100644 --- a/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild +++ b/games-board/pouetchess/pouetchess-0.2.0-r1.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/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild,v 1.7 2009/04/07 01:21:05 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild,v 1.8 2009/07/23 15:45:52 mr_bones_ Exp $ EAPI=2 inherit eutils games @@ -49,7 +49,7 @@ src_configure() { } src_compile() { - local sconsopts=$(echo "${MAKEOPTS}" | sed -e "s/.*\(-j[0-9]\+\).*/\1/") + local sconsopts=$(echo "${MAKEOPTS}" | sed -ne "/-j/ { s/.*\(-j[0-9]\+\).*/\1/; p }") scons ${sconsopts} || die "scons failed" } |