diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-05 05:20:38 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-05 05:20:38 +0000 |
commit | 3cea8b07e29000885711e8ab3a33b0128619a831 (patch) | |
tree | a0e03520226a409bcfca8c5cb3fd111d1ae78293 | |
parent | when using nscd, getent might have to flush the tables to make sure the cache... (diff) | |
download | gentoo-2-3cea8b07e29000885711e8ab3a33b0128619a831.tar.gz gentoo-2-3cea8b07e29000885711e8ab3a33b0128619a831.tar.bz2 gentoo-2-3cea8b07e29000885711e8ab3a33b0128619a831.zip |
run autoconf/autoheader after applying the acl patch #66299
-rw-r--r-- | net-misc/rsync/rsync-2.6.3.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net-misc/rsync/rsync-2.6.3.ebuild b/net-misc/rsync/rsync-2.6.3.ebuild index b1af889ff4f1..f19d1a7fad99 100644 --- a/net-misc/rsync/rsync-2.6.3.ebuild +++ b/net-misc/rsync/rsync-2.6.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-2.6.3.ebuild,v 1.2 2004/10/03 04:38:58 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/rsync-2.6.3.ebuild,v 1.3 2004/10/05 05:20:38 vapier Exp $ inherit eutils flag-o-matic gcc @@ -24,7 +24,11 @@ S="${WORKDIR}/${P/_/}" src_unpack() { unpack "${P/_/}.tar.gz" cd ${S} - use acl && epatch patches/acl.diff + if use acl ; then + epatch patches/acl.diff + autoconf || die "autoconf" + autoheader || die "autoheader" + fi # change confdir to /etc/rsync rather than just /etc (the --sysconfdir # yes, updating the man page is very important. |