diff options
author | mat <mat@FreeBSD.org> | 2016-07-20 23:33:20 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-07-20 23:33:20 +0800 |
commit | db56f13ef4400c01c2a9ef2ba0e545effb4949f9 (patch) | |
tree | d74ba65fed8db0fd098d71428aebd9af6e665d09 /emulators | |
parent | 3152a538183a1b60ad1cc78f4daf75bf3776cbfb (diff) | |
download | freebsd-ports-gnome-db56f13ef4400c01c2a9ef2ba0e545effb4949f9.tar.gz freebsd-ports-gnome-db56f13ef4400c01c2a9ef2ba0e545effb4949f9.tar.zst freebsd-ports-gnome-db56f13ef4400c01c2a9ef2ba0e545effb4949f9.zip |
Cleanup $() variables in ports Makefiles.
Mostly replace with ${}, but sometime, replace with $$() because it is
what was intended in the first place. (I think.)
Sponsored by: Absolight
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/bsvc/Makefile | 2 | ||||
-rw-r--r-- | emulators/virtualbox-ose/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/emulators/bsvc/Makefile b/emulators/bsvc/Makefile index ab991a755811..e76ae1e0fdab 100644 --- a/emulators/bsvc/Makefile +++ b/emulators/bsvc/Makefile @@ -34,6 +34,6 @@ post-patch: s/strstream\.h/strstream/; \ s/fstream\.h/fstream/' \{\} \; @${FIND} ${WRKSRC} -name Makefile -exec \ - ${REINPLACE_CMD} -e 's/make/$(MAKE)/' \{\} \; + ${REINPLACE_CMD} -e 's/make/${MAKE}/' \{\} \; .include <bsd.port.mk> diff --git a/emulators/virtualbox-ose/Makefile b/emulators/virtualbox-ose/Makefile index 3d73896b46bb..efad4cbc6c18 100644 --- a/emulators/virtualbox-ose/Makefile +++ b/emulators/virtualbox-ose/Makefile @@ -257,7 +257,7 @@ post-patch: @${ECHO} 'VBOX_PATH_GSOAP = ${PREFIX}/lib/gsoap' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_GSOAP_BIN = ${PREFIX}/bin' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_GSOAP_IMPORT = ${PREFIX}/share/gsoap/import' >> ${WRKSRC}/LocalConfig.kmk - @${ECHO} 'VBOX_GCC_PEDANTIC_CXX = -Wshadow $(VBOX_GCC_WARN) -Wno-long-long' >> ${WRKSRC}/LocalConfig.kmk + @${ECHO} 'VBOX_GCC_PEDANTIC_CXX = -Wshadow $$(VBOX_GCC_WARN) -Wno-long-long' >> ${WRKSRC}/LocalConfig.kmk .endif .if ${PORT_OPTIONS:MR0LOGGING} @${ECHO} 'VBOX_WITH_R0_LOGGING = 1' >> ${WRKSRC}/LocalConfig.kmk |