diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 14:53:16 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 14:53:16 +0000 |
commit | 31eaad9329246cf765fb8bf9421343fa1b242620 (patch) | |
tree | a345f39f37af387ebe2265fc3983db68b3349d6e /app-shells | |
parent | Marked stable on amd64. (diff) | |
download | historical-31eaad9329246cf765fb8bf9421343fa1b242620.tar.gz historical-31eaad9329246cf765fb8bf9421343fa1b242620.tar.bz2 historical-31eaad9329246cf765fb8bf9421343fa1b242620.zip |
Make clean on all arches, not just non-x86, so we can rebuild with our CFLAGS
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/esh/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/esh/Manifest | 6 | ||||
-rw-r--r-- | app-shells/esh/esh-0.8.5.ebuild | 6 |
3 files changed, 10 insertions, 7 deletions
diff --git a/app-shells/esh/ChangeLog b/app-shells/esh/ChangeLog index 8b95c00c5d40..cc4c2aabe489 100644 --- a/app-shells/esh/ChangeLog +++ b/app-shells/esh/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/esh # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/ChangeLog,v 1.9 2004/01/30 20:01:12 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/ChangeLog,v 1.10 2004/06/02 14:53:16 agriffis Exp $ + + 02 Jun 2004; Aron Griffis <agriffis@gentoo.org> esh-0.8.5.ebuild: + Make clean on all arches, not just non-x86, so we can rebuild with our CFLAGS 30 Jan 2004; <gustavoz@gentoo.org> esh-0.8.5.ebuild: stable on sparc diff --git a/app-shells/esh/Manifest b/app-shells/esh/Manifest index 82d92a9a189b..92dc38eacdff 100644 --- a/app-shells/esh/Manifest +++ b/app-shells/esh/Manifest @@ -1,5 +1,5 @@ -MD5 11544fb9571e6deaf282da2009aac248 ChangeLog 1454 -MD5 cc3b739144457c62154df054af57521f esh-0.8-r2.ebuild 949 -MD5 54b40a5596357acc74c1de4bc1f2e8dd esh-0.8.5.ebuild 1104 +MD5 5a9d9a872843ebcb8ebeb923c1f6e532 esh-0.8.5.ebuild 1104 +MD5 5e8e3dbef09da44f4916d6cbf215f06e esh-0.8-r2.ebuild 948 +MD5 9ad44a66be5257ebc684d77d345c1ff3 ChangeLog 1603 MD5 997445899c25c702dde5dcd3f0686513 files/digest-esh-0.8-r2 58 MD5 bec99ff5c3fa0239930b36a4e7d415a2 files/digest-esh-0.8.5 61 diff --git a/app-shells/esh/esh-0.8.5.ebuild b/app-shells/esh/esh-0.8.5.ebuild index 62b41a151c9c..ed1455997f46 100644 --- a/app-shells/esh/esh-0.8.5.ebuild +++ b/app-shells/esh/esh-0.8.5.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/esh/esh-0.8.5.ebuild,v 1.10 2004/01/30 20:01:12 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/esh-0.8.5.ebuild,v 1.11 2004/06/02 14:53:16 agriffis Exp $ S=${WORKDIR}/esh DESCRIPTION="A UNIX Shell with a simplified Scheme syntax" @@ -23,8 +23,8 @@ src_compile() { -e "s:-ltermcap::" \ Makefile.orig > Makefile # For some reason, this tarball has binary files in it for x86. - # So, if we're not x86, make clean first. - [ ! `use x86` ] && make clean + # Make clean so we can rebuild for our arch and optimization. + make clean make || die } |