diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-24 16:05:36 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-24 16:05:36 +0000 |
commit | fa9a89517d683a21b4c4ecc6969a2ac76bd7cc94 (patch) | |
tree | 61513df93e8cdccee2b5887697fbe527a564602e /sys-devel | |
parent | Added to ~ppc (Manifest recommit) (diff) | |
download | gentoo-2-fa9a89517d683a21b4c4ecc6969a2ac76bd7cc94.tar.gz gentoo-2-fa9a89517d683a21b4c4ecc6969a2ac76bd7cc94.tar.bz2 gentoo-2-fa9a89517d683a21b4c4ecc6969a2ac76bd7cc94.zip |
QA - fix use invocation
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/gdb/ChangeLog | 6 | ||||
-rw-r--r-- | sys-devel/gdb/gdb-5.3.90.ebuild | 4 | ||||
-rw-r--r-- | sys-devel/gdb/gdb-5.3.ebuild | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/sys-devel/gdb/ChangeLog b/sys-devel/gdb/ChangeLog index 6dc9a0321717..c5d1b47fe428 100644 --- a/sys-devel/gdb/ChangeLog +++ b/sys-devel/gdb/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-devel/gdb # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/ChangeLog,v 1.44 2004/06/23 12:21:25 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/ChangeLog,v 1.45 2004/06/24 16:05:36 agriffis Exp $ + + 24 Jun 2004; Aron Griffis <agriffis@gentoo.org> gdb-5.3.90.ebuild, + gdb-5.3.ebuild: + QA - fix use invocation 23 Jun 2004; Aron Griffis <agriffis@gentoo.org> gdb-6.1.1.ebuild, gdb-6.1.ebuild: diff --git a/sys-devel/gdb/gdb-5.3.90.ebuild b/sys-devel/gdb/gdb-5.3.90.ebuild index 1c1824a49466..0d6821de8d80 100644 --- a/sys-devel/gdb/gdb-5.3.90.ebuild +++ b/sys-devel/gdb/gdb-5.3.90.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/gdb/gdb-5.3.90.ebuild,v 1.8 2004/04/27 21:50:18 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-5.3.90.ebuild,v 1.9 2004/06/24 16:05:36 agriffis Exp $ IUSE="nls objc" @@ -64,7 +64,7 @@ src_unpack() { epatch ${FILESDIR}/${PN}-5.3-sparc-nat-asm.patch fi - if [ -n "`use objc`" -a -z "${SNAPSHOT}" ] + if use objc && [ -z "${SNAPSHOT}" ] then cd ${WORKDIR} unpack gdb-5_3-objc-patch.tgz diff --git a/sys-devel/gdb/gdb-5.3.ebuild b/sys-devel/gdb/gdb-5.3.ebuild index 83b77dbb38fd..4b90e6acbd2e 100644 --- a/sys-devel/gdb/gdb-5.3.ebuild +++ b/sys-devel/gdb/gdb-5.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/sys-devel/gdb/gdb-5.3.ebuild,v 1.15 2004/04/27 21:50:18 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-5.3.ebuild,v 1.16 2004/06/24 16:05:36 agriffis Exp $ IUSE="nls objc" @@ -38,7 +38,7 @@ src_unpack() { fi - if [ -n "`use objc`" ] ; then + if use objc ; then unpack gdb-5_3-objc-patch.tgz cd ${S} |