diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-06-25 05:35:31 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-06-25 05:35:31 +0000 |
commit | a33191366c083aad8ab7cd37d06db2d4790f3e39 (patch) | |
tree | 6379d84ceeca72bc6c80702dd60bd714b378b04a /x11-toolkits | |
parent | 4bde157247a8dd613e16048a7701a02ea240e8a9 (diff) |
Convert GMAKE to MAKE_CMD
Please note that lots of invocation of MAKE_CMD here are wrong as they do not
properly respect MAKE_ENV and friends
With hat: portmgr
Notes
Notes:
svn path=/head/; revision=359185
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/gtkada/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/gtkada3/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/gtkmm20-reference/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/gtkmm24-reference/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/gtkmm30-reference/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/p5-Gtk2/Makefile | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/x11-toolkits/gtkada/Makefile b/x11-toolkits/gtkada/Makefile index 3a3e49ea98ea..9e0c61480faa 100644 --- a/x11-toolkits/gtkada/Makefile +++ b/x11-toolkits/gtkada/Makefile @@ -54,7 +54,7 @@ do-build: # This target is recreated because -j cannot be set, but # MAKE_JOBS_SAFE=yes is needed for PROCESSORS value cd ${WRKSRC} && \ - ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS} ${ALL_TARGET} + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/libdata diff --git a/x11-toolkits/gtkada3/Makefile b/x11-toolkits/gtkada3/Makefile index 116d8f9e69ee..1c1ed22fb089 100644 --- a/x11-toolkits/gtkada3/Makefile +++ b/x11-toolkits/gtkada3/Makefile @@ -71,7 +71,7 @@ do-build: # This target is recreated because -j cannot be set, but # MAKE_JOBS_SAFE=yes is needed for PROCESSORS value cd ${WRKSRC} && \ - ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS} ${ALL_TARGET} + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/libdata diff --git a/x11-toolkits/gtkmm20-reference/Makefile b/x11-toolkits/gtkmm20-reference/Makefile index 00645a38227b..cbf0b13582eb 100644 --- a/x11-toolkits/gtkmm20-reference/Makefile +++ b/x11-toolkits/gtkmm20-reference/Makefile @@ -16,7 +16,7 @@ post-patch: do-install: .for d in docs examples - @cd ${WRKSRC}/${d} && ${GMAKE} ${MAKE_ARGS} install + @cd ${WRKSRC}/${d} && ${MAKE_CMD} ${MAKE_ARGS} install .endfor .include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" diff --git a/x11-toolkits/gtkmm24-reference/Makefile b/x11-toolkits/gtkmm24-reference/Makefile index d7be86d9bd7c..c1d4f718b768 100644 --- a/x11-toolkits/gtkmm24-reference/Makefile +++ b/x11-toolkits/gtkmm24-reference/Makefile @@ -13,7 +13,7 @@ DOCSDIR= ${PREFIX}/share/doc/gtkmm-2.4 do-install: .for d in docs - @cd ${WRKSRC}/${d} && ${GMAKE} ${MAKE_ARGS} install + @cd ${WRKSRC}/${d} && ${MAKE_CMD} ${MAKE_ARGS} install .endfor .include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" diff --git a/x11-toolkits/gtkmm30-reference/Makefile b/x11-toolkits/gtkmm30-reference/Makefile index 821668eeb300..90b0ed15e6d6 100644 --- a/x11-toolkits/gtkmm30-reference/Makefile +++ b/x11-toolkits/gtkmm30-reference/Makefile @@ -13,7 +13,7 @@ DOCSDIR= ${PREFIX}/share/doc/gtkmm-3.0 do-install: .for d in docs - @cd ${WRKSRC}/${d} && ${GMAKE} ${MAKE_ARGS} install + @cd ${WRKSRC}/${d} && ${MAKE_CMD} ${MAKE_ARGS} install .endfor .include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk" diff --git a/x11-toolkits/p5-Gtk2/Makefile b/x11-toolkits/p5-Gtk2/Makefile index 7c47a4b39fab..f129554ca1ae 100644 --- a/x11-toolkits/p5-Gtk2/Makefile +++ b/x11-toolkits/p5-Gtk2/Makefile @@ -21,7 +21,7 @@ RUN_DEPENDS= p5-Cairo>=1:${PORTSDIR}/graphics/p5-Cairo \ p5-Glib2>=1.280:${PORTSDIR}/devel/p5-Glib2 \ p5-Pango>=1.220:${PORTSDIR}/x11-toolkits/p5-Pango -CONFIGURE_ENV= FORCE_GMAKE=yes +CONFIGURE_ENV= FORCE_MAKE_CMD=yes MAKE_ENV= LANG=C USES= gmake perl5 USE_PERL5= configure |