diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-24 03:25:52 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-24 03:25:52 +0000 |
commit | 415e13d3f3097fa06ce2448d5676b45825a2b9db (patch) | |
tree | fc43945c8a60e7cadf8eacb70218cdb019b29663 /sys-devel/binutils/binutils-2.13.90.0.18.ebuild | |
parent | Marked stable on sparc wrt bug #54590. (diff) | |
download | historical-415e13d3f3097fa06ce2448d5676b45825a2b9db.tar.gz historical-415e13d3f3097fa06ce2448d5676b45825a2b9db.tar.bz2 historical-415e13d3f3097fa06ce2448d5676b45825a2b9db.zip |
QA - fix use invocation
Diffstat (limited to 'sys-devel/binutils/binutils-2.13.90.0.18.ebuild')
-rw-r--r-- | sys-devel/binutils/binutils-2.13.90.0.18.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys-devel/binutils/binutils-2.13.90.0.18.ebuild b/sys-devel/binutils/binutils-2.13.90.0.18.ebuild index 9ab2cc35f197..bc6cce64c4d2 100644 --- a/sys-devel/binutils/binutils-2.13.90.0.18.ebuild +++ b/sys-devel/binutils/binutils-2.13.90.0.18.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/sys-devel/binutils/binutils-2.13.90.0.18.ebuild,v 1.21 2004/04/16 03:33:04 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.13.90.0.18.ebuild,v 1.22 2004/06/24 03:25:52 agriffis Exp $ IUSE="nls bootstrap build" @@ -84,9 +84,9 @@ src_compile() { emake tooldir="${ROOT}/usr/bin" \ all || die - if [ -z "`use build`" ] + if ! use build then - if [ -z "`use bootstrap`" ] + if ! use bootstrap then # Nuke the manpages to recreate them (only use this if we have perl) find . -name '*.1' -exec rm -f {} \; || : @@ -135,7 +135,7 @@ src_install() { done cd ${S} - if [ -z "`use build`" ] + if ! use build then make prefix=${D}/usr \ mandir=${D}/usr/share/man \ |