diff options
author | 2006-01-26 06:32:23 +0000 | |
---|---|---|
committer | 2006-01-26 06:32:23 +0000 | |
commit | 8ab241df8bdb086de3ba1deb0fe422aaa147a0c3 (patch) | |
tree | 83ecb18d4a3e5514406dec8783831bafa99c3d98 /media-sound | |
parent | Fix modular-x deps. (diff) | |
download | gentoo-2-8ab241df8bdb086de3ba1deb0fe422aaa147a0c3.tar.gz gentoo-2-8ab241df8bdb086de3ba1deb0fe422aaa147a0c3.tar.bz2 gentoo-2-8ab241df8bdb086de3ba1deb0fe422aaa147a0c3.zip |
Fix parallel build issue
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/sexypsf/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/sexypsf/sexypsf-0.4.7.ebuild | 9 |
2 files changed, 10 insertions, 6 deletions
diff --git a/media-sound/sexypsf/ChangeLog b/media-sound/sexypsf/ChangeLog index c5aec0e8f6c8..5cbd6a912e13 100644 --- a/media-sound/sexypsf/ChangeLog +++ b/media-sound/sexypsf/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/sexypsf -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/sexypsf/ChangeLog,v 1.13 2005/11/15 20:59:30 kugelfang Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/sexypsf/ChangeLog,v 1.14 2006/01/26 06:32:22 truedfx Exp $ + + 26 Jan 2006; Harald van Dijk <truedfx@gentoo.org> sexypsf-0.4.7.ebuild: + Fix parallel build issue (bug #119240) 15 Nov 2005; Danny van Dyk <kugelfang@gentoo.org> sexypsf-0.4.7.ebuild: This works on amd64 as of version 0.4.7, marked accordingly. diff --git a/media-sound/sexypsf/sexypsf-0.4.7.ebuild b/media-sound/sexypsf/sexypsf-0.4.7.ebuild index c32335d43544..3b5a0b6a7e3e 100644 --- a/media-sound/sexypsf/sexypsf-0.4.7.ebuild +++ b/media-sound/sexypsf/sexypsf-0.4.7.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/sexypsf/sexypsf-0.4.7.ebuild,v 1.3 2005/11/15 20:59:30 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/sexypsf/sexypsf-0.4.7.ebuild,v 1.4 2006/01/26 06:32:23 truedfx Exp $ inherit eutils @@ -44,9 +44,10 @@ src_compile() { fi cd "${S}" - # don't generate separate xmms and bmp plugins; they're compatible # do make clean to force rebuild with -fPIC - emake CPU="${CPU}" XMMSCONF="${XMMSCONF}" clean sexypsf || die "emake failed" + make clean || die "make clean failed" + # don't generate separate xmms and bmp plugins; they're compatible + emake CPU="${CPU}" XMMSCONF="${XMMSCONF}" sexypsf || die "building plugin failed" fi } |