diff options
author | jlam <jlam@pkgsrc.org> | 2001-07-14 03:22:08 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-07-14 03:22:08 +0000 |
commit | 31de8b9238cac2fdb79e7c9f9a1f011aaabdeebd (patch) | |
tree | d05f912584871d813912da59d46b37293d821f59 | |
parent | c50d74339a051d26c4ee33f6208d27e81d4a37af (diff) | |
download | pkgsrc-31de8b9238cac2fdb79e7c9f9a1f011aaabdeebd.tar.gz |
Mark as USE_BUILDLINK_ONLY and move inclusion of buildlink.mk file to
the end of the Makefile. Remove the commented-out USE_LIBINTL.
-rw-r--r-- | devel/gmake/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/devel/gmake/Makefile b/devel/gmake/Makefile index cb0e7256df1..18914fbbff1 100644 --- a/devel/gmake/Makefile +++ b/devel/gmake/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2001/07/14 03:21:17 jlam Exp $ +# $NetBSD: Makefile,v 1.28 2001/07/14 03:22:08 jlam Exp $ # FreeBSD Id: Makefile,v 1.16 1997/06/13 20:00:47 max Exp # @@ -11,15 +11,13 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.gnu.org/software/make/make.html COMMENT= GNU version of 'make' utility +USE_BUILDLINK_ONLY= YES USE_GTEXINFO= YES -#USE_LIBINTL= YES GNU_CONFIGURE= YES CONFIGURE_ARGS+= --program-prefix="g" CONFIGURE_ENV+= PKGLOCALEDIR="${PKGLOCALEDIR}" MAKE_ENV+= PKGLOCALEDIR="${PKGLOCALEDIR}" -.include "../../devel/gettext-lib/buildlink.mk" - post-extract: ${MV} ${WRKSRC}/make.texinfo ${WRKSRC}/make.texinfo.orig ${SED} '/@dircategory/s|.*|@dircategory Programming \& development tools|' \ @@ -29,4 +27,5 @@ post-install: ${CHMOD} g-s ${PREFIX}/bin/gmake ${CHGRP} ${BINGRP} ${PREFIX}/bin/gmake +.include "../../devel/gettext-lib/buildlink.mk" .include "../../mk/bsd.pkg.mk" |