diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-07-20 23:33:20 +0800 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-07-20 23:33:20 +0800 |
commit | e50dc2a33659f6b4119906eca4efb0e803b64bfb (patch) | |
tree | d74ba65fed8db0fd098d71428aebd9af6e665d09 /x11-fonts | |
parent | 699288db85300808717293ff894f66a1b6091b29 (diff) | |
download | freebsd-ports-gnome-e50dc2a33659f6b4119906eca4efb0e803b64bfb.tar.gz freebsd-ports-gnome-e50dc2a33659f6b4119906eca4efb0e803b64bfb.tar.zst freebsd-ports-gnome-e50dc2a33659f6b4119906eca4efb0e803b64bfb.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 'x11-fonts')
-rw-r--r-- | x11-fonts/urwfonts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-fonts/urwfonts/Makefile b/x11-fonts/urwfonts/Makefile index eb134f8f0d05..7ed797385375 100644 --- a/x11-fonts/urwfonts/Makefile +++ b/x11-fonts/urwfonts/Makefile @@ -19,7 +19,7 @@ SUB_FILES= pkg-message do-install: @${MKDIR} ${STAGEDIR}${FONTSDIR} .for FILE in Fontmap - ${INSTALL_DATA} ${WRKSRC}/$(FILE) ${STAGEDIR}${FONTSDIR} + ${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${FONTSDIR} .endfor ${INSTALL_DATA} ${WRKSRC}/*.pfb ${STAGEDIR}${FONTSDIR} ${INSTALL_DATA} ${WRKSRC}/*.afm ${STAGEDIR}${FONTSDIR} |