diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-01 02:35:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-01 02:35:59 +0000 |
commit | cd070d262189c3556cf6c39a1b1ed2a3a40dab25 (patch) | |
tree | 5350bf0d26eb481c976e162bf71fd2195cac1ede /app-arch | |
parent | corrected the naming convention of the shared object in ebuild from 0.6 to 0.... (diff) | |
download | gentoo-2-cd070d262189c3556cf6c39a1b1ed2a3a40dab25.tar.gz gentoo-2-cd070d262189c3556cf6c39a1b1ed2a3a40dab25.tar.bz2 gentoo-2-cd070d262189c3556cf6c39a1b1ed2a3a40dab25.zip |
[`use`] -> use
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/bzip2/bzip2-1.0.2-r3.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-arch/bzip2/bzip2-1.0.2-r3.ebuild b/app-arch/bzip2/bzip2-1.0.2-r3.ebuild index c71f5e38e73b..c255dfbd9e78 100644 --- a/app-arch/bzip2/bzip2-1.0.2-r3.ebuild +++ b/app-arch/bzip2/bzip2-1.0.2-r3.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/app-arch/bzip2/bzip2-1.0.2-r3.ebuild,v 1.5 2004/03/02 16:34:27 iggy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/bzip2/bzip2-1.0.2-r3.ebuild,v 1.6 2004/04/01 02:35:59 vapier Exp $ inherit gcc flag-o-matic @@ -33,7 +33,7 @@ src_unpack() { } src_compile() { - if [ ! `use build` ] + if ! use build then emake CC="$(gcc-getCC)" CXX="$(gcc-getCXX)" -f Makefile-libbz2_so all || die "Make failed" fi @@ -41,7 +41,7 @@ src_compile() { } src_install() { - if [ ! `use build` ] + if ! use build then make PREFIX=${D}/usr install || die mv ${D}/usr/bin ${D} |