diff options
author | agc <agc@pkgsrc.org> | 1998-06-10 08:02:08 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1998-06-10 08:02:08 +0000 |
commit | 666273802ad3a368fafd1bbcca9fba0e7030f819 (patch) | |
tree | 6666e3fdc661d0f840de3ed2df836db67e9df18b /graphics | |
parent | 1ff656b15a2c1145b2eff1e9f1ae3fdc09fea152 (diff) | |
download | pkgsrc-666273802ad3a368fafd1bbcca9fba0e7030f819.tar.gz |
Remove the trailing '-f' from MAKE_FLAGS in bsd.pkg.mk, and include it
explicitly in the commands before ${MAKEFILE}; modify package
Makefiles to conform to this rationalisation. This was used
inconsistently in many packages, some including it, some not.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gimp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/gimp/Makefile b/graphics/gimp/Makefile index 598de47ae33..83d86007225 100644 --- a/graphics/gimp/Makefile +++ b/graphics/gimp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 1998/05/09 15:24:42 frueauf Exp $ +# $NetBSD: Makefile,v 1.17 1998/06/10 08:02:08 agc Exp $ DISTNAME= gimp-0.99.28 CATEGORIES= graphics @@ -55,6 +55,6 @@ pre-install: post-install: @${ECHO_MSG} "--> now installing in ${GIMP_DATA}" @(cd ${WRKDIR}/${GIMP_DATA} && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} \ - ${MAKE_FLAGS} ${MAKEFILE} ${INSTALL_TARGET}) + ${MAKE_FLAGS} -f ${MAKEFILE} ${INSTALL_TARGET}) .include <../../mk/bsd.pkg.mk> |