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 /net/tigervnc | |
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 'net/tigervnc')
-rw-r--r-- | net/tigervnc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tigervnc/Makefile b/net/tigervnc/Makefile index 17436f4dc730..9d1504627deb 100644 --- a/net/tigervnc/Makefile +++ b/net/tigervnc/Makefile @@ -146,9 +146,9 @@ post-configure: @cd ${WRKSRC}/unix/xserver/ && ${SETENV} ${CONFIGURE_ENV} ./configure ${CONFIGURE_ARGS} post-build: - @cd ${WRKSRC}/unix/xserver/ && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS} SHELL=${LOCALBASE}/bin/bash + @cd ${WRKSRC}/unix/xserver/ && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} SHELL=${LOCALBASE}/bin/bash post-install: - @cd ${WRKSRC}/unix/xserver/hw/vnc/ && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS} install + @cd ${WRKSRC}/unix/xserver/hw/vnc/ && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} install .include <bsd.port.post.mk> |