summaryrefslogtreecommitdiffstats
path: root/share/mk
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2016-02-04 01:08:51 +0000
committerbdrewery <bdrewery@FreeBSD.org>2016-02-04 01:08:51 +0000
commitc848707b796d017fa305da82177c3bf616e21322 (patch)
tree936a3b5d791b2e0b58c65949a11ac2105ca75eba /share/mk
parent798fceb2c17744606d0117cac7d771a1e076f160 (diff)
downloadFreeBSD-src-c848707b796d017fa305da82177c3bf616e21322.zip
FreeBSD-src-c848707b796d017fa305da82177c3bf616e21322.tar.gz
Fix style and remove excess / for installing SYMLINKS.
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'share/mk')
-rw-r--r--share/mk/bsd.incs.mk2
-rw-r--r--share/mk/bsd.links.mk4
2 files changed, 3 insertions, 3 deletions
diff --git a/share/mk/bsd.incs.mk b/share/mk/bsd.incs.mk
index 57e08ff..0897e8d 100644
--- a/share/mk/bsd.incs.mk
+++ b/share/mk/bsd.incs.mk
@@ -80,7 +80,7 @@ _${group}INS: ${_${group}INCS}
.if defined(INCSLINKS) && !empty(INCSLINKS)
installincludes:
.for s t in ${INCSLINKS}
- ${INSTALL_SYMLINK} $s ${DESTDIR}$t
+ ${INSTALL_SYMLINK} ${s} ${DESTDIR}${t}
.endfor
.endif
.endif # !target(installincludes)
diff --git a/share/mk/bsd.links.mk b/share/mk/bsd.links.mk
index 38ceb42..9e24af8 100644
--- a/share/mk/bsd.links.mk
+++ b/share/mk/bsd.links.mk
@@ -8,8 +8,8 @@ afterinstall: _installlinks
.ORDER: realinstall _installlinks
_installlinks:
.for s t in ${LINKS}
- ${INSTALL_LINK} ${DESTDIR}$s ${DESTDIR}$t
+ ${INSTALL_LINK} ${DESTDIR}${s} ${DESTDIR}${t}
.endfor
.for s t in ${SYMLINKS}
- ${INSTALL_SYMLINK} $s ${DESTDIR}/$t
+ ${INSTALL_SYMLINK} ${s} ${DESTDIR}${t}
.endfor
OpenPOWER on IntegriCloud