Date: Mon, 15 Feb 2021 10:02:31 -0800 From: "Simon J. Gerraty" <sjg@juniper.net> To: "O. Hartmann" <o.hartmann@walstatt.org> Cc: Mateusz Guzik <mjguzik@gmail.com>, freebsd-current <freebsd-current@FreeBSD.org>, <freebsd-jail@FreeBSD.org>, Stefan Esser <se@FreeBSD.org>, <sjg@juniper.net> Subject: Re: jails: /pool/jails/fulljailmake -> /pool/jails/fulljailbmake: No such file or directory Message-ID: <84259.1613412151@kaos.jnpr.net> In-Reply-To: <20210215154220.1722fb97@freyja> References: <20210215113620.01a84de7@freyja> <CAGudoHHU39CgEgM5DT5987e3-8Jyg3OY=NXAzHEwBK3DirRr=g@mail.gmail.com> <20210215154220.1722fb97@freyja>
next in thread | previous in thread | raw e-mail | index | archive | help
O. Hartmann <o.hartmann@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?84259.1613412151>
