Date: Sat, 27 Jul 2002 16:50:30 +0200 From: Cyrille Lefevre <cyrille.lefevre@laposte.net> To: Ruslan Ermilov <ru@FreeBSD.org> Cc: freebsd stable <freebsd-stable@FreeBSD.org> Subject: sys/boot Message-ID: <20020727145030.GA20412@gits.dyndns.org>
next in thread | raw e-mail | index | archive | help
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:cyrille.lefevre@laposte.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020727145030.GA20412>