diff options
author | Simon J. Gerraty <sjg@FreeBSD.org> | 2021-02-15 18:05:00 +0000 |
---|---|---|
committer | Simon J. Gerraty <sjg@FreeBSD.org> | 2021-02-15 18:05:00 +0000 |
commit | 85d6747a694a6da2619e9f627d005a0aee87dd34 (patch) | |
tree | cd4885f1835bc98328824ac98becf2dd7af37e1c | |
parent | eac22dd48079d5cccecb07f4e60b44bb692167f8 (diff) | |
download | src-85d6747a694a6da2619e9f627d005a0aee87dd34.tar.gz src-85d6747a694a6da2619e9f627d005a0aee87dd34.zip |
bsd.links.mk wants full paths
The values in LINKS need to be full paths.
-rw-r--r-- | usr.bin/bmake/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/bmake/Makefile.inc b/usr.bin/bmake/Makefile.inc index 8c4cb659e1d8..9960f0ceeb2d 100644 --- a/usr.bin/bmake/Makefile.inc +++ b/usr.bin/bmake/Makefile.inc @@ -9,7 +9,7 @@ .if exists(${.CURDIR}/tests) PROG= make -LINKS= make bmake +LINKS= ${BINDIR}/make ${BINDIR}/bmake MLINKS= ${MAN} b${MAN} .endif |