From 1fdb947e7617b6ef6fd5b4a8c70e3d5ec8be99ce Mon Sep 17 00:00:00 2001 From: jlam Date: Thu, 25 Oct 2001 16:13:06 +0000 Subject: Do the whole automake step, not just the autoconf step, at pre-configure time. We need the various Makefile.in to be regenerated due to changes in the patched configure.in. Doing it now prevents the build process from automatically doing it later during the build, which would overwrite any changes done to the configure script by targets in ${_CONFIGURE_PREREQ}. --- net/mtr/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'net') diff --git a/net/mtr/Makefile b/net/mtr/Makefile index d0c6b4402b8..3ad7a38577f 100644 --- a/net/mtr/Makefile +++ b/net/mtr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2001/10/16 18:45:14 kleink Exp $ +# $NetBSD: Makefile,v 1.18 2001/10/25 16:13:06 jlam Exp $ # DISTNAME= mtr-0.42 @@ -18,7 +18,11 @@ USE_GMAKE= yes USE_BUILDLINK_ONLY= yes pre-configure: - cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf + cd ${WRKSRC}; \ + ${LOCALBASE}/bin/aclocal; \ + ${LOCALBASE}/bin/automake -a --foreign -i; \ + ${LOCALBASE}/bin/autoreconf --force; \ + ${LOCALBASE}/bin/autoheader do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mtr -- cgit v1.2.3