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 /comms/linrad | |
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 'comms/linrad')
-rw-r--r-- | comms/linrad/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comms/linrad/Makefile b/comms/linrad/Makefile index 191433fbdf30..95d993077546 100644 --- a/comms/linrad/Makefile +++ b/comms/linrad/Makefile @@ -61,7 +61,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/help.lir ${STAGEDIR}${DATADIR}/help.lir ${INSTALL_SCRIPT} -m0555 ${FILESDIR}/linrad ${STAGEDIR}${PREFIX}/bin/linrad # Some day we may want the svga version as well. -# ${INSTALL_PROGRAM} -m0555 ${WRKSRC}/${PORTNAME} $(STAGEDIR}${PREFIX}/bin/${PORTNAME}.svga +# ${INSTALL_PROGRAM} -m0555 ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}.svga ${INSTALL_PROGRAM} -m0555 ${WRKSRC}/${BINFILE} ${STAGEDIR}${PREFIX}/bin/x${PORTNAME} ${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${LINRAD_DOCFILES} |