diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-03-15 23:40:50 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-03-15 23:40:50 +0000 |
| commit | 95246f3d83c287d2ef9cfd6563a1ab3b6c0b38f6 (patch) | |
| tree | 26e6666368c3053dae1beff7a23b889ce06d91dd | |
| parent | ba44fb709d52648be18f2401de81bdca3da5e8a3 (diff) | |
Notes
| -rw-r--r-- | share/mk/bsd.links.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.links.mk b/share/mk/bsd.links.mk index e182a19379105..4f8565c255f90 100644 --- a/share/mk/bsd.links.mk +++ b/share/mk/bsd.links.mk @@ -9,9 +9,9 @@ afterinstall: _installlinks _installlinks: .for s t in ${LINKS} @${ECHO} "$t -> $s" ;\ - ${INSTALL_LINK} $s $t + ${INSTALL_LINK} ${DESTDIR}$s ${DESTDIR}$t .endfor .for s t in ${SYMLINKS} @${ECHO} "$t -> $s" ;\ - ${INSTALL_SYMLINK} $s $t + ${INSTALL_SYMLINK} $s ${DESTDIR}/$t .endfor |
