O. Hartmann <o.hartm...@walstatt.org> wrote:
> > If reverting this does not help, can you try with:
> > sysctl vfs.cache_fast_lookup=0
> 
> reverting the mentioned commit helped and made things working as expected 
> again.
> 
> Thank you very much.

Sorry looks like bsd.links.mk expects full paths.
Can you confirm the below works for you:

diff --git a/usr.bin/bmake/Makefile.inc b/usr.bin/bmake/Makefile.inc
index 8c4cb659e1d..9960f0ceeb2 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
 
_______________________________________________
freebsd-jail@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-jail
To unsubscribe, send any mail to "freebsd-jail-unsubscr...@freebsd.org"

Reply via email to