summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2016-07-20 15:33:20 +0000
committerMathieu Arnold <mat@FreeBSD.org>2016-07-20 15:33:20 +0000
commite50dc2a33659f6b4119906eca4efb0e803b64bfb (patch)
treed74ba65fed8db0fd098d71428aebd9af6e665d09 /print
parentRemove unused variable. (diff)
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
Notes
Notes: svn path=/head/; revision=418840
Diffstat (limited to 'print')
-rw-r--r--print/asprint/Makefile2
-rw-r--r--print/splix/Makefile4
2 files changed, 3 insertions, 3 deletions
diff --git a/print/asprint/Makefile b/print/asprint/Makefile
index 9ba1b914d0de..46e8e38a9b1e 100644
--- a/print/asprint/Makefile
+++ b/print/asprint/Makefile
@@ -17,6 +17,6 @@ ALL_TARGET= asprint
MAKEFILE= makefile
do-install:
- ${INSTALL_PROGRAM} $(WRKSRC)/asprint ${STAGEDIR}${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/asprint ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>
diff --git a/print/splix/Makefile b/print/splix/Makefile
index fbf555ebc98d..030d4f39406d 100644
--- a/print/splix/Makefile
+++ b/print/splix/Makefile
@@ -69,8 +69,8 @@ do-install:
${MKDIR} ${STAGEDIR}${BIN_DEST_DIR}
.for MODEL in ${MODELS}
${MKDIR} ${STAGEDIR}${DEST_DIR_${MODEL}}
-.for PPD in $(PPD_${MODEL})
- ${INSTALL_DATA} ${WRKSRC}/ppd/${PPD}.ppd ${STAGEDIR}$(DEST_DIR_${MODEL})
+.for PPD in ${PPD_${MODEL}}
+ ${INSTALL_DATA} ${WRKSRC}/ppd/${PPD}.ppd ${STAGEDIR}${DEST_DIR_${MODEL}}
.endfor
.endfor