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

From: Simon J. Gerraty <sjg_at_juniper.net>
Date: Mon, 15 Feb 2021 10:02:31 -0800
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
_at__at_ -9,7 +9,7 _at__at_
 
 .if exists(${.CURDIR}/tests)
 PROG= make
-LINKS= make bmake
+LINKS= ${BINDIR}/make ${BINDIR}/bmake
 MLINKS= ${MAN} b${MAN}
 .endif
 
Received on Mon Feb 15 2021 - 17:02:37 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:27 UTC