diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:09:30 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:09:30 +0000 |
commit | 1ee722fd191fd39a3e13c5231281041f1b4e9f2a (patch) | |
tree | be23a54b8f07b0186bac806e4aa577c1393451e2 /net-mail/amavis | |
parent | oops :) (diff) | |
download | gentoo-2-1ee722fd191fd39a3e13c5231281041f1b4e9f2a.tar.gz gentoo-2-1ee722fd191fd39a3e13c5231281041f1b4e9f2a.tar.bz2 gentoo-2-1ee722fd191fd39a3e13c5231281041f1b4e9f2a.zip |
added try syntax
Diffstat (limited to 'net-mail/amavis')
-rw-r--r-- | net-mail/amavis/amavis-0.2.1_p2.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-mail/amavis/amavis-0.2.1_p2.ebuild b/net-mail/amavis/amavis-0.2.1_p2.ebuild index bccb964496b4..cf9d0f0e5ca4 100644 --- a/net-mail/amavis/amavis-0.2.1_p2.ebuild +++ b/net-mail/amavis/amavis-0.2.1_p2.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/net-mail/amavis/amavis-0.2.1_p2.ebuild,v 1.1 2000/08/16 17:16:16 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/amavis/amavis-0.2.1_p2.ebuild,v 1.2 2000/09/15 20:09:10 drobbins Exp $ P=amavis-0.2.1-p2 A=amavis-0.2.1-pre2.tar.gz @@ -12,16 +12,16 @@ HOMEPAGE="http://www.amavis.org" src_compile() { cd ${S} - ./configure --host=${CHOST} --prefix=/usr \ + try ./configure --host=${CHOST} --prefix=/usr \ --with-logdir=/var/log/scanmail \ --with-virusdir=/var/tmp/virusmails \ --enable-qmail - make + try make } src_install() { cd ${S} - make prefix=${D}/usr install + try make prefix=${D}/usr install into /usr dodoc AUTHORS BUGS COPYING ChangeLog FAQ HINTS NEWS README* TODO dodoc doc/amavis.txt |