diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 14:59:23 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 14:59:23 +0000 |
commit | 0202c416c104bddc3390395fa00eb062b901ca27 (patch) | |
tree | 1d6095efcdaeb7b2ce5741db85bc4de709e35b46 /app-shells/sash | |
parent | Make clean on all arches, not just non-x86, so we can rebuild with our CFLAGS (diff) | |
download | historical-0202c416c104bddc3390395fa00eb062b901ca27.tar.gz historical-0202c416c104bddc3390395fa00eb062b901ca27.tar.bz2 historical-0202c416c104bddc3390395fa00eb062b901ca27.zip |
Fix use invocation
Diffstat (limited to 'app-shells/sash')
-rw-r--r-- | app-shells/sash/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/sash/sash-3.6.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-shells/sash/ChangeLog b/app-shells/sash/ChangeLog index 5fb6531c9eaa..8f6f5d02350e 100644 --- a/app-shells/sash/ChangeLog +++ b/app-shells/sash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/sash # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.24 2004/06/01 23:19:24 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.25 2004/06/02 14:56:17 agriffis Exp $ + + 02 Jun 2004; Aron Griffis <agriffis@gentoo.org> sash-3.6.ebuild: + Fix use invocation 01 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> sash-3.4-r3.ebuild, sash-3.4-r4.ebuild, sash-3.4-r5.ebuild: diff --git a/app-shells/sash/sash-3.6.ebuild b/app-shells/sash/sash-3.6.ebuild index 0de129c03d7e..c7b728f1db70 100644 --- a/app-shells/sash/sash-3.6.ebuild +++ b/app-shells/sash/sash-3.6.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-shells/sash/sash-3.6.ebuild,v 1.14 2004/06/01 20:49:50 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.6.ebuild,v 1.15 2004/06/02 14:56:17 agriffis Exp $ inherit eutils @@ -23,9 +23,9 @@ src_unpack() { cd ${S} epatch ${FILESDIR}/sash-3.6-fix-includes.patch - [ `use readline` ] && epatch ${FILESDIR}/sash-3.6-readline.patch - [ `use ppc64` ] && epatch ${FILESDIR}/sash-3.6-ppc64-includes.patch - [ `use ppc` ] && epatch ${FILESDIR}/sash-3.6-2.6-includes.patch + use readline && epatch ${FILESDIR}/sash-3.6-readline.patch + use ppc64 && epatch ${FILESDIR}/sash-3.6-ppc64-includes.patch + use ppc && epatch ${FILESDIR}/sash-3.6-2.6-includes.patch sed -e "s:-O3:${CFLAGS}:" -i Makefile } |