diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-06-24 21:58:35 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-06-24 21:58:35 +0000 |
commit | 5c09a40242dd84f0bf6fc910c7cec3b63f98ab48 (patch) | |
tree | 97b095cba1cffd343d56a95e51b6b687a813de2a /audio/baresip | |
parent | Simplify makefile and get rid of GMAKE call (diff) |
Properly call MAKE_CMD
Notes
Notes:
svn path=/head/; revision=359137
Diffstat (limited to 'audio/baresip')
-rw-r--r-- | audio/baresip/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/baresip/Makefile b/audio/baresip/Makefile index 6d0c1a041ada..7f44f0a7bb4a 100644 --- a/audio/baresip/Makefile +++ b/audio/baresip/Makefile @@ -119,7 +119,7 @@ do-install: # Install modules and add to plist post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/modules - for m in $$(${GMAKE} -sC ${WRKSRC} ${MAKE_ARGS} showmodules); \ + for m in $$(${SETENV} ${MAKE_ENV} ${MAKE_CMD} -sC ${WRKSRC} ${MAKE_ARGS} showmodules); \ do ${INSTALL_LIB} ${WRKSRC}/$$m.so \ ${STAGEDIR}${PREFIX}/lib/baresip/modules; \ ${ECHO_CMD} lib/${PORTNAME}/modules/$$m.so >> ${TMPPLIST}; \ |