diff options
author | fredb <fredb> | 2001-02-06 03:16:56 +0000 |
---|---|---|
committer | fredb <fredb> | 2001-02-06 03:16:56 +0000 |
commit | 6832477769f2e8dc8ce59161acc7a4c2f8f784dd (patch) | |
tree | fc373d0dc8bbedf2209b780336196ea2dcb03607 /security | |
parent | 270af3290dfb322d67d97949025d6844c89920c5 (diff) | |
download | pkgsrc-6832477769f2e8dc8ce59161acc7a4c2f8f784dd.tar.gz |
Make that "autoreconf" -- there is no "autoremake".
Diffstat (limited to 'security')
-rw-r--r-- | security/openssh/Makefile | 6 | ||||
-rw-r--r-- | security/pakemon/Makefile | 6 | ||||
-rw-r--r-- | security/stunnel/Makefile | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile index 31fe684abf4..fead5d88f4b 100644 --- a/security/openssh/Makefile +++ b/security/openssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2001/02/05 09:01:03 tron Exp $ +# $NetBSD: Makefile,v 1.37 2001/02/06 03:17:00 fredb Exp $ DISTNAME= openssh-2.3.0p1 CATEGORIES= security @@ -16,7 +16,7 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.openssh.com/ BUILD_DEPENDS+= ${PERL5}:../../lang/perl5-base -BUILD_DEPENDS+= ${LOCALBASE}/bin/autoremake:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf CRYPTO= yes @@ -81,7 +81,7 @@ PLIST_SRC= ${PKGDIR}/PLIST.SunOS .endif pre-configure: - cd ${WRKSRC} && ${LOCALBASE}/bin/autoremake + cd ${WRKSRC} && ${LOCALBASE}/bin/autoreconf post-build: for FILE in \ diff --git a/security/pakemon/Makefile b/security/pakemon/Makefile index 8f29e1ab390..bbce8b80983 100644 --- a/security/pakemon/Makefile +++ b/security/pakemon/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2001/02/05 09:01:03 tron Exp $ +# $NetBSD: Makefile,v 1.3 2001/02/06 03:17:00 fredb Exp $ DISTNAME= pakemon-0.3.1 CATEGORIES= security @@ -12,7 +12,7 @@ DEPENDS+= libnet-*:../../devel/libnet # only at compile-time. # BUILD_DEPENDS+= ${LOCALBASE}/lib/libnids.a:../../net/libnids -BUILD_DEPENDS+= ${LOCALBASE}/bin/autoremake:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf GNU_CONFIGURE= yes @@ -20,6 +20,6 @@ post-extract: ${CP} ${WRKSRC}/pakemon.h ${WRKSRC}/pakemon.h.in post-patch: - (cd ${WRKSRC}; autoreconf) + cd ${WRKSRC}; autoreconf .include "../../mk/bsd.pkg.mk" diff --git a/security/stunnel/Makefile b/security/stunnel/Makefile index 9ce6042c363..f0fa066f31a 100644 --- a/security/stunnel/Makefile +++ b/security/stunnel/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2001/02/05 09:01:03 tron Exp $ +# $NetBSD: Makefile,v 1.13 2001/02/06 03:17:00 fredb Exp $ # DISTNAME= stunnel-3.13 @@ -8,7 +8,7 @@ MASTER_SITES= http://www.stunnel.org/download/stunnel/src/ MAINTAINER= martin@NetBSD.ORG HOMEPAGE= http://www.stunnel.org/ -BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf DEPENDS+= pth>=1.3.5:../../devel/pth USE_SSL= # defined @@ -18,6 +18,6 @@ CONFIGURE_ARGS+= --with-ssl=${SSLBASE} \ --with-pem-dir="${SSLCERTS}" pre-configure: - cd ${WRKSRC} && ${LOCALBASE}/bin/autoremake + cd ${WRKSRC} && ${LOCALBASE}/bin/autoreconf .include "../../mk/bsd.pkg.mk" |