diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-08 01:26:20 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-08 01:26:20 +0000 |
commit | 4564b542d3e48713838de2031be73444ef4a3ed1 (patch) | |
tree | 88af04f26ec5c78e9146065077ca5231d5ed3cd9 /media-sound/fluidsynth | |
parent | removed default src_compile. awaiting bug reports on parallel install (diff) | |
download | historical-4564b542d3e48713838de2031be73444ef4a3ed1.tar.gz historical-4564b542d3e48713838de2031be73444ef4a3ed1.tar.bz2 historical-4564b542d3e48713838de2031be73444ef4a3ed1.zip |
Fix use invocation
Diffstat (limited to 'media-sound/fluidsynth')
-rw-r--r-- | media-sound/fluidsynth/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/fluidsynth/fluidsynth-1.0.3.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/media-sound/fluidsynth/ChangeLog b/media-sound/fluidsynth/ChangeLog index 61fb137345ef..463b8d8aa638 100644 --- a/media-sound/fluidsynth/ChangeLog +++ b/media-sound/fluidsynth/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/fluidsynth # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.11 2004/05/06 12:03:20 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.12 2004/06/08 01:16:50 agriffis Exp $ + + 07 Jun 2004; Aron Griffis <agriffis@gentoo.org> fluidsynth-1.0.3.ebuild: + Fix use invocation 06 May 2004; David Holm <dholm@gentoo.org> fluidsynth-1.0.3.ebuild: Removed ppc-specific version mask. diff --git a/media-sound/fluidsynth/fluidsynth-1.0.3.ebuild b/media-sound/fluidsynth/fluidsynth-1.0.3.ebuild index e8e88a9c1669..8e685f455d01 100644 --- a/media-sound/fluidsynth/fluidsynth-1.0.3.ebuild +++ b/media-sound/fluidsynth/fluidsynth-1.0.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.0.3.ebuild,v 1.11 2004/05/06 12:03:20 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.0.3.ebuild,v 1.12 2004/06/08 01:16:50 agriffis Exp $ inherit flag-o-matic eutils @@ -36,7 +36,7 @@ src_compile() { || myconf="--disable-ladcca ${myconf}" use alsa || myconf="--disable-alsa ${myconf}" use jack || myconf="--disable-jack-support ${myconf}" - if [ `use sse` ]; then + if use sse; then myconf="--enable-SSE ${myconf}" # If your CFLAGS include optimizations for sse, ie: # -march=pentium4 -mfpmath=sse -msse2 |