Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 May 2001 09:21:50 -0700 (PDT)
From:      David Wolfskill <david@catwhisker.org>
To:        current@FreeBSD.ORG
Subject:   installworld broken (includes fix) [was: Re: sbin/vinum broken]
Message-ID:  <200105231621.f4NGLob06057@bunrab.catwhisker.org>
In-Reply-To: <200105231608.f4NG8Vt05998@bunrab.catwhisker.org>

next in thread | previous in thread | raw e-mail | index | archive | help
>Date: Wed, 23 May 2001 09:08:31 -0700 (PDT)
>From: David Wolfskill <david@catwhisker.org>

>The "make installworld" dies, however:

>cd /usr/src/include/../sys;  install -C -C -o root -g wheel -m 444 dev/usb/*.h  /usr/include/dev/usb
>cd /usr/src/include/../sys;  install -C -C -o root -g wheel -m 444 dev/wi/*.h  /usr/include/dev/wi
>cd /usr/src/include/../sys;  install -C -C -o root -g wheel -m 444 fs/fdesc/*.h  /usr/include/fs/fdesc
>install: fs/fdesc/*.h: No such file or directory
>*** Error code 71

>Stop in /usr/src/include.
>*** Error code 1

>Stop in /usr/src.
>*** Error code 1



>I suspect that the reference to fs/fdesc/*.h should read "fs/fdescfs/*.h",
>per the earlier "HEADS UP" note.


OK; that was necessary, but insufficient.  Here's a patch:

cvs diff -u include/Makefile
Index: include/Makefile
===================================================================
RCS file: /cvs/freebsd/src/include/Makefile,v
retrieving revision 1.138
diff -u -u -r1.138 Makefile
--- include/Makefile    2001/05/23 09:41:59     1.138
+++ include/Makefile    2001/05/23 16:18:24
@@ -46,8 +46,8 @@
 LNOHEADERDIRS= fs isofs ufs dev
 
 LSUBDIRS=      cam/scsi dev/ppbus dev/usb dev/wi \
-	fs/fdesc fs/fifofs fs/nullfs fs/portal fs/procfs fs/smbfs \
-	fs/umapfs fs/union isofs/cd9660 ufs/ffs ufs/mfs ufs/ufs
+	fs/fdescfs fs/fifofs fs/nullfs fs/portalfs fs/procfs fs/smbfs \
+	fs/umapfs fs/unionfs isofs/cd9660 ufs/ffs ufs/mfs ufs/ufs
 
 # Define SHARED to indicate whether you want symbolic links to the system
 # source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
dhcp-133[18] 

Cheers,
david
-- 
David H. Wolfskill				david@catwhisker.org
As a computing professional, I believe it would be unethical for me to
advise, recommend, or support the use (save possibly for personal
amusement) of any product that is or depends on any Microsoft product.

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?200105231621.f4NGLob06057>