From 82bbe22b8cb2a5d73c5526c02221dd849c08e4da Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Thu, 5 Oct 2023 05:02:34 +0300 Subject: [PATCH] usr.bin/bmake: create 'make' always, do not check tests dir exist. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274272 --- usr.bin/bmake/Makefile.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/usr.bin/bmake/Makefile.inc b/usr.bin/bmake/Makefile.inc index 8e5d2b24781..7f4701a501e 100644 --- a/usr.bin/bmake/Makefile.inc +++ b/usr.bin/bmake/Makefile.inc @@ -6,13 +6,12 @@ .export SRCTOP .endif -.if exists(${.CURDIR}/tests) PROG= make + .if ${PROGNAME:U} != "bmake" LINKS= ${BINDIR}/make ${BINDIR}/bmake MLINKS= ${MAN} b${MAN} .endif -.endif .if !defined(MK_SHARED_TOOLCHAIN) || ${MK_SHARED_TOOLCHAIN} == "no" NO_SHARED?= YES