Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tools tools: revert use of <bsd.hostinit.mk>



details:   https://anonhg.NetBSD.org/src/rev/87e2021180e3
branches:  trunk
changeset: 376202:87e2021180e3
user:      lukem <lukem%NetBSD.org@localhost>
date:      Sun Jun 04 16:53:59 2023 +0000

description:
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:

 tools/Makefile.host |  9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diffs (17 lines):

diff -r ad26e3986c11 -r 87e2021180e3 tools/Makefile.host
--- a/tools/Makefile.host       Sun Jun 04 16:14:59 2023 +0000
+++ b/tools/Makefile.host       Sun Jun 04 16:53:59 2023 +0000
@@ -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



Home | Main Index | Thread Index | Old Index