diff options
| author | Bryan Drewery <bdrewery@FreeBSD.org> | 2021-03-06 17:45:08 +0000 |
|---|---|---|
| committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2021-03-06 17:45:08 +0000 |
| commit | eb8bf6bb4204c302e2329b68c8a930be5d44bc9c (patch) | |
| tree | ef4165c7e526b8947c8ce029a83a414dbc188bd7 | |
| parent | 092f3f081265c68cd8de0234ba8e46560ccc061e (diff) | |
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | usr.bin/bmake/Makefile.inc | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -458,7 +458,7 @@ MMAKE= ${MMAKEENV} ${MAKE} \ OBJTOP=${MYMAKE:H}/obj \ OBJROOT='$${OBJTOP}/' \ MAKEOBJDIRPREFIX= \ - MAN= -DNO_SHARED \ + MK_MAN=no -DNO_SHARED \ -DNO_CPU_CFLAGS MK_WERROR=no \ -DNO_SUBDIR \ DESTDIR= PROGNAME=${MYMAKE:T} diff --git a/usr.bin/bmake/Makefile.inc b/usr.bin/bmake/Makefile.inc index 9960f0ceeb2d..8e10a654a754 100644 --- a/usr.bin/bmake/Makefile.inc +++ b/usr.bin/bmake/Makefile.inc @@ -9,9 +9,11 @@ .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 |
