diff options
Diffstat (limited to 'media-video/cinelerra/cinelerra-1.1.7.ebuild')
-rw-r--r-- | media-video/cinelerra/cinelerra-1.1.7.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/media-video/cinelerra/cinelerra-1.1.7.ebuild b/media-video/cinelerra/cinelerra-1.1.7.ebuild index bb1b49858255..9b103f461105 100644 --- a/media-video/cinelerra/cinelerra-1.1.7.ebuild +++ b/media-video/cinelerra/cinelerra-1.1.7.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-video/cinelerra/cinelerra-1.1.7.ebuild,v 1.9 2004/05/03 20:39:13 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra/cinelerra-1.1.7.ebuild,v 1.10 2004/06/09 16:55:38 agriffis Exp $ inherit gcc eutils flag-o-matic export WANT_GCC_3="yes" @@ -45,10 +45,10 @@ src_compile() { src_install() { local myarch - if [ -n "`use x86`" ]; then + if use x86; then myarch="${CHOST/-*/}" #should solve the i586/i686 problem fi - if [ -n "`use ppc`" ]; then + if use ppc; then myarch="ppc" fi cd ${S}/${PN}/${myarch} |