Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Nov 1999 07:36:23 +0200 (SAT)
From:      John Hay <jhay@mikom.csir.co.za>
To:        freebsd-current@FreeBSD.ORG (FreeBSD-current)
Subject:   Re: make -j13 world broken
Message-ID:  <199911240536.HAA94945@zibbi.mikom.csir.co.za>

next in thread | raw e-mail | index | archive | help
> 
> I assume make(1) has been built, because that's the first constructive
> thing that happens. Can you check that it has been installed?

Yes it has and it looks ok. It almost looks like the path is screwed up.
In the meantime I played a bit around and this hack makes it work. Maybe
that can help point out what is wrong? It is strange because XMAKE is
used to build the dependencies just before the libraries and there it
worked ok.

-------
Index: Makefile.inc1
===================================================================
RCS file: /home/ncvs/src/Makefile.inc1,v
retrieving revision 1.92
diff -u -r1.92 Makefile.inc1
--- Makefile.inc1	1999/11/21 20:06:03	1.92
+++ Makefile.inc1	1999/11/23 10:01:04
@@ -204,7 +204,8 @@
 # bootstrap make
 BMAKE=	${BMAKEENV} ${MAKE} DESTDIR=${WORLDTMP}
 # cross make used for compilation
-XMAKE=	${XMAKEENV} ${MAKE} DESTDIR=${WORLDTMP}
+XXXMAKE= ${WORLDTMP}/usr/bin/make -m ${.CURDIR}/share/mk -f Makefile.inc1
+XMAKE=	${XMAKEENV} ${XXXMAKE} DESTDIR=${WORLDTMP}
 # cross make used for final installation
 IXMAKE=	${XMAKEENV} ${MAKE}
-------- 

John
-- 
John Hay -- John.Hay@mikom.csir.co.za


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199911240536.HAA94945>