diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-25 20:53:54 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-25 20:53:54 +0000 |
commit | ced6234868124ab8ff7bc8d4f8b2c43940f77d8d (patch) | |
tree | 3a485319f820d2b50e33f68000799fb0b8c13829 /sys-apps/fileutils | |
parent | Security bump for the CAN-2004-0495 and CAN-2004-0535 vulnerabilities. (Manif... (diff) | |
download | gentoo-2-ced6234868124ab8ff7bc8d4f8b2c43940f77d8d.tar.gz gentoo-2-ced6234868124ab8ff7bc8d4f8b2c43940f77d8d.tar.bz2 gentoo-2-ced6234868124ab8ff7bc8d4f8b2c43940f77d8d.zip |
QA - fix use invocation
Diffstat (limited to 'sys-apps/fileutils')
-rw-r--r-- | sys-apps/fileutils/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/fileutils/fileutils-4.1.11-r1.ebuild | 6 | ||||
-rw-r--r-- | sys-apps/fileutils/fileutils-4.1.11.ebuild | 4 |
3 files changed, 10 insertions, 6 deletions
diff --git a/sys-apps/fileutils/ChangeLog b/sys-apps/fileutils/ChangeLog index 1df5c9de2ba5..29dbae26d23b 100644 --- a/sys-apps/fileutils/ChangeLog +++ b/sys-apps/fileutils/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/fileutils # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fileutils/ChangeLog,v 1.28 2004/06/24 22:06:41 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fileutils/ChangeLog,v 1.29 2004/06/25 20:53:54 agriffis Exp $ + + 25 Jun 2004; Aron Griffis <agriffis@gentoo.org> fileutils-4.1.11-r1.ebuild, + fileutils-4.1.11.ebuild: + QA - fix use invocation 19 Apr 2004; Michael McCabe <randy@gentoo.org> fileutils-4.1.11-r2.ebuild: added s390 keywords diff --git a/sys-apps/fileutils/fileutils-4.1.11-r1.ebuild b/sys-apps/fileutils/fileutils-4.1.11-r1.ebuild index 54571e523380..74afb69c201e 100644 --- a/sys-apps/fileutils/fileutils-4.1.11-r1.ebuild +++ b/sys-apps/fileutils/fileutils-4.1.11-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fileutils/fileutils-4.1.11-r1.ebuild,v 1.14 2004/06/24 22:06:41 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fileutils/fileutils-4.1.11-r1.ebuild,v 1.15 2004/06/25 20:53:54 agriffis Exp $ IUSE="acl nls build" ACLPV=4.1.11acl-0.8.25 @@ -24,7 +24,7 @@ src_unpack() { unpack ${A} - if [ "`use acl`" ]; then + if use acl; then zcat ${DISTDIR}/fileutils-${ACLPV}.diff | patch -p0 cd ${S}/lib cat ${FILESDIR}/acl.c.diff | patch -p0 -l || die @@ -62,7 +62,7 @@ src_install() { cd usr/bin ln -s ../../bin/* . - if [ -z "`use build`" ] + if ! use build then cd ${S} dodoc AUTHORS ChangeLog* COPYING NEWS README* THANKS TODO diff --git a/sys-apps/fileutils/fileutils-4.1.11.ebuild b/sys-apps/fileutils/fileutils-4.1.11.ebuild index ee4a8a9c0b47..76409a00b95a 100644 --- a/sys-apps/fileutils/fileutils-4.1.11.ebuild +++ b/sys-apps/fileutils/fileutils-4.1.11.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fileutils/fileutils-4.1.11.ebuild,v 1.14 2004/06/24 22:06:41 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fileutils/fileutils-4.1.11.ebuild,v 1.15 2004/06/25 20:53:54 agriffis Exp $ IUSE="nls build" @@ -54,7 +54,7 @@ src_install() { cd usr/bin ln -s ../../bin/* . - if [ -z "`use build`" ] + if ! use build then cd ${S} dodoc AUTHORS ChangeLog* COPYING NEWS README* THANKS TODO |