summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2000-09-15 20:08:57 +0000
committerDaniel Robbins <drobbins@gentoo.org>2000-09-15 20:08:57 +0000
commitf31a185a375571bb88d5f1b1a6c7967c3e76c0f4 (patch)
tree6a728d226712bc497f16ea36511d87b667fc80d4 /dev-libs/libxml
parentadded try syntax (diff)
downloadhistorical-f31a185a375571bb88d5f1b1a6c7967c3e76c0f4.tar.gz
historical-f31a185a375571bb88d5f1b1a6c7967c3e76c0f4.tar.bz2
historical-f31a185a375571bb88d5f1b1a6c7967c3e76c0f4.zip
added try syntax
Diffstat (limited to 'dev-libs/libxml')
-rw-r--r--dev-libs/libxml/libxml-1.8.9.ebuild8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-libs/libxml/libxml-1.8.9.ebuild b/dev-libs/libxml/libxml-1.8.9.ebuild
index e64e597585d4..79765d7cc7ba 100644
--- a/dev-libs/libxml/libxml-1.8.9.ebuild
+++ b/dev-libs/libxml/libxml-1.8.9.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/dev-libs/libxml/libxml-1.8.9.ebuild,v 1.2 2000/08/16 04:38:03 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml/libxml-1.8.9.ebuild,v 1.3 2000/09/15 20:08:56 drobbins Exp $
P=libxml-1.8.9
A=${P}.tar.gz
@@ -12,13 +12,13 @@ HOMEPAGE="http://www.gnome.org/"
src_compile() {
cd ${S}
- LDFLAGS="-lncurses" ./configure --host=${CHOST} --prefix=/opt/gnome
- make
+ LDFLAGS="-lncurses" try ./configure --host=${CHOST} --prefix=/opt/gnome
+ try make
}
src_install() {
cd ${S}
- make install prefix=${D}/opt/gnome
+ try make install prefix=${D}/opt/gnome
dodoc AUTHORS COPYING* ChangeLog NEWS README
}