diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:08:56 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:08:56 +0000 |
commit | 0beabd46d606db80572acc7a6d541cb99f83927f (patch) | |
tree | a4791149f4033746ec0fad9bfc115828d0880098 /gnome-base/ORBit | |
parent | added try syntax (diff) | |
download | historical-0beabd46d606db80572acc7a6d541cb99f83927f.tar.gz historical-0beabd46d606db80572acc7a6d541cb99f83927f.tar.bz2 historical-0beabd46d606db80572acc7a6d541cb99f83927f.zip |
added try syntax
Diffstat (limited to 'gnome-base/ORBit')
-rw-r--r-- | gnome-base/ORBit/ORBit-0.5.3.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnome-base/ORBit/ORBit-0.5.3.ebuild b/gnome-base/ORBit/ORBit-0.5.3.ebuild index 724f94c97799..c8ad548f07c9 100644 --- a/gnome-base/ORBit/ORBit-0.5.3.ebuild +++ b/gnome-base/ORBit/ORBit-0.5.3.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 Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit/ORBit-0.5.3.ebuild,v 1.2 2000/08/16 04:38:01 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit/ORBit-0.5.3.ebuild,v 1.3 2000/09/15 20:08:54 drobbins Exp $ P=ORBit-0.5.3 A=${P}.tar.gz @@ -12,13 +12,13 @@ HOMEPAGE="http://www.labs.redhat.com/orbit/" src_compile() { cd ${S} - ./configure --host=${CHOST} --prefix=/opt/gnome - make + try ./configure --host=${CHOST} --prefix=/opt/gnome + try make } src_install() { cd ${S} - make prefix=${D}/opt/gnome install + try make prefix=${D}/opt/gnome install prepinfo /opt/gnome dodoc AUTHORS COPYING* ChangeLog README NEWS TODO |