>
> 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 -- [EMAIL PROTECTED]
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message