diff options
author | 2001-05-05 17:44:49 +0000 | |
---|---|---|
committer | 2001-05-05 17:44:49 +0000 | |
commit | b7d0ae7009438355d49d14ede0b9dd1ac4d0ffba (patch) | |
tree | 255cd8fd75692ccd8b08c67063928255556e881a | |
parent | Fix Makefile.sunos5.gcc so that it builds sup correctly on Solaris 8 (diff) | |
download | wireguard-openbsd-b7d0ae7009438355d49d14ede0b9dd1ac4d0ffba.tar.xz wireguard-openbsd-b7d0ae7009438355d49d14ede0b9dd1ac4d0ffba.zip |
Synch with bsd.prog.mk.
The only client won't see the difference.
-rw-r--r-- | share/mk/bsd.lib.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index 444c3b01a7e..42b0b641a01 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.lib.mk,v 1.28 2001/04/03 23:00:09 espie Exp $ +# $OpenBSD: bsd.lib.mk,v 1.29 2001/05/05 17:44:49 espie Exp $ # $NetBSD: bsd.lib.mk,v 1.67 1996/01/17 20:39:26 mycroft Exp $ # @(#)bsd.lib.mk 5.26 (Berkeley) 5/2/91 @@ -268,9 +268,9 @@ realinstall: .if defined(LINKS) && !empty(LINKS) @set ${LINKS}; \ while test $$# -ge 2; do \ - l=${DESTDIR}${BINDIR}/$$1; \ + l=${DESTDIR}$$1; \ shift; \ - t=${DESTDIR}${BINDIR}/$$1; \ + t=${DESTDIR}$$1; \ shift; \ echo $$t -\> $$l; \ rm -f $$t; \ |