jails: /pool/jails/fulljailmake -> /pool/jails/fulljailbmake: No such file or directory

Simon J. Gerraty sjg at juniper.net
Mon Feb 15 18:02:37 UTC 2021


O. Hartmann <o.hartmann at 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
 


More information about the freebsd-current mailing list