diff options
| author | lukem <lukem@NetBSD.org> | 2023-06-04 16:53:59 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 2023-06-04 16:53:59 +0000 |
| commit | e79c2cd809b7bdd7ba7a2d151e837a5fe0447f36 (patch) | |
| tree | b8600a2cec1007175fd3f9167a0b1aef3ff34c78 /tools/Makefile.host | |
| parent | beee5d5a072faa7baef7a3f221e462513142fe49 (diff) | |
tools: revert use of <bsd.hostinit.mk>
tools/Makefile.host revision 1.35 changed from
setting various NOxxx variables and .include <bsd.own.mk>
to
.include <bsd.hostinit.mk>
which sets the same NOxxx variables, .include <bsd.init.mk>
which optionally .include ../Makefile.inc before .include <bsd.own.mk>.
This chnage caused build failures with HAVE_LLVM=yes, so revert rev 1.35.
(Maybe to do with the .include ../Makefile.inc. The tools/llvm* build is
tricky, and it's easier to revert this change than debug.)
Diffstat (limited to 'tools/Makefile.host')
| -rw-r--r-- | tools/Makefile.host | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/Makefile.host b/tools/Makefile.host index b599c8e0f1a..9608ca365da 100644 --- a/tools/Makefile.host +++ b/tools/Makefile.host @@ -1,6 +1,11 @@ -# $NetBSD: Makefile.host,v 1.35 2023/06/04 10:00:20 lukem Exp $ +# $NetBSD: Makefile.host,v 1.36 2023/06/04 16:53:59 lukem Exp $ -.include <bsd.hostinit.mk> +NOINFO= # defined +NOLINT= # defined +NOMAN= # defined +MKREPRO=no # Native toolchain might be unable to do it + +.include <bsd.own.mk> .ifndef NOCOMPATLIB # Use TOOLDIR copy of libnbcompat and associated *.h files |
