diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:09:26 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:09:26 +0000 |
commit | adbc0232162af82135fe86a08eb1e5ef5c887723 (patch) | |
tree | 238b8c36b4fbb1114cd4081f15ab21ead5b6d285 /sys-devel/patch | |
parent | added try syntax (diff) | |
download | historical-adbc0232162af82135fe86a08eb1e5ef5c887723.tar.gz historical-adbc0232162af82135fe86a08eb1e5ef5c887723.tar.bz2 historical-adbc0232162af82135fe86a08eb1e5ef5c887723.zip |
added try syntax
Diffstat (limited to 'sys-devel/patch')
-rw-r--r-- | sys-devel/patch/patch-2.5.4-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-devel/patch/patch-2.5.4-r1.ebuild b/sys-devel/patch/patch-2.5.4-r1.ebuild index e40d138083fe..0f90d947684f 100644 --- a/sys-devel/patch/patch-2.5.4-r1.ebuild +++ b/sys-devel/patch/patch-2.5.4-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.5.4-r1.ebuild,v 1.2 2000/08/16 04:38:34 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.5.4-r1.ebuild,v 1.3 2000/09/15 20:09:26 drobbins Exp $ P=patch-2.5.4 A=${P}.tar.gz @@ -11,8 +11,8 @@ SRC_URI="ftp://ftp.gnu.org/gnu/patch/${A}" HOMEPAGE="http://www.gnu.org/software/patch/patch.html" src_compile() { - ./configure --host=${CHOST} --prefix=/usr - make + try ./configure --host=${CHOST} --prefix=/usr + try make } src_install() { |