Hi, I'm running -stable and I encounter the following problem :
# make buildworld ... ===> sys/boot/buildworld cd: can't cd to /disk2/freebsd/stable/src/sys/boot/buildworld *** Error code 2 let's try : # cd /sys/boot/buildworld # SUBDIR=buildworld make -V SUBDIR buildworld ficl i386 well, src/sys/boot/Makefile only have SUBDIR+= w/o any SUBDIR= before, this is a problem when SUBDIR exists in the environment. however, I'm surprising I don't have this problem before and I'll investigate where this occur since I don't set SUBDIR anywhere ? in the mean time, could you fix that or do you prefer I submit a PR ? thanks, Index: Makefile =================================================================== RCS file: /home/ncvs/src/sys/boot/Makefile,v retrieving revision 1.6.2.1 diff -u -r1.6.2.1 Makefile --- Makefile 17 Jul 2002 14:23:14 -0000 1.6.2.1 +++ Makefile 27 Jul 2002 14:43:50 -0000 @@ -1,5 +1,7 @@ # $FreeBSD: src/sys/boot/Makefile,v 1.6.2.1 2002/07/17 14:23:14 ru Exp $ +SUBDIR= + # Build the add-in FORTH interpreter SUBDIR+= ficl CC -stable Cyrille. -- Cyrille Lefevre mailto:[EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-stable" in the body of the message
