diff options
author | wiz <wiz@pkgsrc.org> | 2001-09-28 02:15:02 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-09-28 02:15:02 +0000 |
commit | fe20d2b94a5e8cde1b02615583eccd96787b427c (patch) | |
tree | 2f811c7dc663c198d0d3ef079b95b07d00fed5c4 /textproc/gsed | |
parent | f79573370a0e23409840de418068dce41749898e (diff) | |
download | pkgsrc-fe20d2b94a5e8cde1b02615583eccd96787b427c.tar.gz |
If automake is called with -i, we don't need gmake.
Patch from Stoned Elipot in pkg/14082.
Diffstat (limited to 'textproc/gsed')
-rw-r--r-- | textproc/gsed/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/textproc/gsed/Makefile b/textproc/gsed/Makefile index a6df7a8b4d9..4f1ca36af0c 100644 --- a/textproc/gsed/Makefile +++ b/textproc/gsed/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/06/26 12:45:38 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2001/09/28 02:15:02 wiz Exp $ # DISTNAME= sed-3.02 @@ -13,7 +13,6 @@ COMMENT= GNU version of sed BUILD_DEPENDS+= autoconf>=2.13:../../devel/autoconf BUILD_DEPENDS+= automake>=1.4:../../devel/automake -USE_GMAKE= YES GNU_CONFIGURE= YES CONFIGURE_ARGS= --program-prefix=g INFO_FILES= sed.info @@ -22,6 +21,6 @@ pre-configure: cd ${WRKSRC} && \ ${LOCALBASE}/bin/aclocal && \ ${LOCALBASE}/bin/autoreconf && \ - ${LOCALBASE}/bin/automake + ${LOCALBASE}/bin/automake -i .include "../../mk/bsd.pkg.mk" |