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 | d345220a3084da4d4caba47e3eeefac5c5925fd6 (patch) | |
tree | a0d438b3dd1eb8d2b10f8cf46655b4ee68a2e06b /app-shells/esh | |
parent | Marked stable on amd64. (Manifest recommit) (diff) | |
download | gentoo-2-d345220a3084da4d4caba47e3eeefac5c5925fd6.tar.gz gentoo-2-d345220a3084da4d4caba47e3eeefac5c5925fd6.tar.bz2 gentoo-2-d345220a3084da4d4caba47e3eeefac5c5925fd6.zip |
Make clean on all arches, not just non-x86, so we can rebuild with our CFLAGS
Diffstat (limited to 'app-shells/esh')
-rw-r--r-- | app-shells/esh/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/esh/esh-0.8.5.ebuild | 6 |
2 files changed, 7 insertions, 4 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/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 } |