From owner-freebsd-questions Tue Feb 25 05:47:12 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA22119 for questions-outgoing; Tue, 25 Feb 1997 05:47:12 -0800 (PST) Received: from paaltjens.si.hhs.nl (pp@paaltjens.si.hhs.nl [145.52.10.8]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id FAA22108 for ; Tue, 25 Feb 1997 05:47:07 -0800 (PST) From: v942429@si.hhs.nl Received: from si.hhs.nl by paaltjens.si.hhs.nl id <09898-0@paaltjens.si.hhs.nl>; Tue, 25 Feb 1997 14:46:51 +0100 Received: by minne.si.hhs.nl (SMI-8.6/SMI-SVR4) id OAA12274; Tue, 25 Feb 1997 14:46:56 +0100 Date: Tue, 25 Feb 1997 14:46:56 +0100 Message-Id: <199702251346.OAA12274@minne.si.hhs.nl> To: freebsd-questions@FreeBSD.ORG Subject: make world 2.1.7 fails.. X-Sun-Charset: US-ASCII Sender: owner-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi there, I am fairly novice with FreeBSD and keeping the system up-to-date. I have cvsupped the RELENG_2_1_7_RELEASE from cvsup.freebsd.org. My system is currently running a 2.1.5-RELEASE kernel. Now, when I try to ``make world'', I'm getting an error telling me make does not know how to make cleandir. Am I forgetting something? This is the output: -------------------------------------------------------------- Making hierarchy -------------------------------------------------------------- cd /usr/src/etc && make distrib-dirs mtree -deU -f /usr/src/etc/mtree/BSD.root.dist -p / mtree -deU -f /usr/src/etc/mtree/BSD.var.dist -p /var missing: ./mail (not created: File exists) <---- BTW: is this `normal' ? missing: ./spool (not created: File exists) missing: ./spool/lock (not created: File exists) missing: ./spool/lpd (not created: File exists) missing: ./spool/mqueue (not created: File exists) missing: ./spool/output (not created: File exists) missing: ./spool/uucp (not created: File exists) missing: ./spool/uucp/.Preserve (not created: File exists) missing: ./spool/uucp/.Sequence (not created: File exists) missing: ./spool/uucp/.Status (not created: File exists) missing: ./spool/uucp/.Temp (not created: File exists) missing: ./spool/uucp/.Xqtdir (not created: File exists) missing: ./spool/uucppublic (not created: File exists) if [ -d /usr/share/locale ] ; then cd /usr/share/locale; for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT nl_BE nl_NL no_NO pt_PT sv_SE ; do if [ -h $l.ISO_8859-1 ]; then rm $l.ISO_8859-1; fi ; done; fi mtree -deU -f /usr/src/etc/mtree/BSD.usr.dist -p /usr mtree -deU -f /usr/src/etc/mtree/BSD.include.dist -p /usr/include missing: ./machine (not created: File exists) missing: ./net (not created: File exists) missing: ./netccitt (not created: File exists) missing: ./netinet (not created: File exists) missing: ./netiso (not created: File exists) missing: ./netns (not created: File exists) missing: ./nfs (not created: File exists) missing: ./sys (not created: File exists) missing: ./ufs (not created: File exists) missing: ./ufs/ffs (not created: File exists) missing: ./ufs/lfs (not created: File exists) missing: ./ufs/mfs (not created: File exists) missing: ./ufs/ufs (not created: File exists) missing: ./vm (not created: File exists) cd /; rm -f /sys; ln -s usr/src/sys sys cd /usr/share/locale; set - `cat /usr/src/etc/locale.alias`; while [ $# -gt 0 ] ; do rm -rf "$1"; ln -s "$2" "$1"; shift; shift; done cd /usr/share/nls; set - `cat /usr/src/etc/locale.alias`; while [ $# -gt 0 ] ; do rm -rf "$1"; ln -s "$2" "$1"; shift; shift; done; rm -rf POSIX; ln -s C POSIX -------------------------------------------------------------- Rebuilding /usr/share/mk -------------------------------------------------------------- cd /usr/src/share/mk && make install install -c -o bin -g bin -m 444 bsd.README bsd.dep.mk bsd.doc.mk bsd.info.mk bsd.kern.mk bsd.kmod.mk bsd.obj.mk bsd.lib.mk bsd.man.mk bsd.own.mk bsd.port.mk bsd.port.subdir.mk bsd.prog.mk bsd.sgml.mk bsd.subdir.mk sys.mk /usr/share/mk -------------------------------------------------------------- Cleaning up the source tree, and rebuilding the obj tree -------------------------------------------------------------- here=`pwd`; dest=/usr/obj`echo $here | sed 's,^/usr/src,,'`; if test -d /usr/obj -a ! -d $dest; then mkdir -p $dest; else true; fi; cd $dest && rm -rf include lib bin games gnu libexec sbin share sys usr.bin usr.sbin secure lkm find . -name obj | xargs rm -rf make cleandir *** Error code 2 Stop. ----- TIA, Jeroen H. v942429@si.hhs.nl