diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:08:52 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:08:52 +0000 |
commit | d5a64e9dd2c3dccf5793bf8bac94c96900f631e5 (patch) | |
tree | ff561cbbfbb28b7b8faa4236004f5eecee839e45 /dev-perl/libxml-perl | |
parent | added try syntax (diff) | |
download | historical-d5a64e9dd2c3dccf5793bf8bac94c96900f631e5.tar.gz historical-d5a64e9dd2c3dccf5793bf8bac94c96900f631e5.tar.bz2 historical-d5a64e9dd2c3dccf5793bf8bac94c96900f631e5.zip |
added try syntax
Diffstat (limited to 'dev-perl/libxml-perl')
-rw-r--r-- | dev-perl/libxml-perl/libxml-perl-0.07.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-perl/libxml-perl/libxml-perl-0.07.ebuild b/dev-perl/libxml-perl/libxml-perl-0.07.ebuild index 43dbac9bace6..e67881267c88 100644 --- a/dev-perl/libxml-perl/libxml-perl-0.07.ebuild +++ b/dev-perl/libxml-perl/libxml-perl-0.07.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-perl/libxml-perl/libxml-perl-0.07.ebuild,v 1.1 2000/08/28 02:36:32 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/libxml-perl/libxml-perl-0.07.ebuild,v 1.2 2000/09/15 20:08:51 drobbins Exp $ P=libxml-perl-0.07 A=${P}.tar.gz @@ -16,15 +16,15 @@ src_compile() { cd ${S} perl Makefile.PL $PERLINSTALL - make - make test + try make + try make test } src_install () { cd ${S} - make install + try make install prepman dodoc README ChangeLog Changes } |