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 /lang/hugs/Makefile | |
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 'lang/hugs/Makefile')
-rw-r--r-- | lang/hugs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/hugs/Makefile b/lang/hugs/Makefile index 78f3f0b65d0b..1966d15858e2 100644 --- a/lang/hugs/Makefile +++ b/lang/hugs/Makefile @@ -56,12 +56,12 @@ post-patch: do-build: . for dir in src libraries docs - cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET} + cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET} . endfor do-install: . for dir in src libraries demos docs - cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET} + cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET} . endfor .include <bsd.port.post.mk> |