summaryrefslogtreecommitdiffstats
path: root/share/mk
diff options
context:
space:
mode:
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