From owner-freebsd-current Sat Dec 12 11:15:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA19040 for freebsd-current-outgoing; Sat, 12 Dec 1998 11:15:36 -0800 (PST) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from abby.skypoint.net (abby.skypoint.net [199.86.32.252]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA19034; Sat, 12 Dec 1998 11:15:32 -0800 (PST) (envelope-from bruce@zuhause.mn.org) Received: (from uucp@localhost) by abby.skypoint.net (8.8.7/jl 1.3) with UUCP id NAA20669; Sat, 12 Dec 1998 13:15:30 -0600 (CST) Received: (from bruce@localhost) by zuhause.mn.org (8.9.1/8.9.1) id NAA21331; Sat, 12 Dec 1998 13:10:33 -0600 (CST) (envelope-from bruce) From: Bruce Albrecht MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <13938.49064.837111.285479@zuhause.zuhause.mn.org> Date: Sat, 12 Dec 1998 13:10:32 -0600 (CST) To: Nick Hibma , freebsd-current@FreeBSD.ORG Subject: Re: Make world fails in /usr.sbin/usbd In-Reply-To: <13938.48647.433050.667678@zuhause.zuhause.mn.org> References: <13938.47448.324592.152079@zuhause.zuhause.mn.org> <13938.48647.433050.667678@zuhause.zuhause.mn.org> X-Mailer: VM 6.62 under 20.4 "Emerald" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Oops, missed one. My guess is that this is your responsibility. I think it needs the following changes: diff -u /usr/src/etc/mtree/BSD.include.dist /tmp/BSD.include.dist --- /usr/src/etc/mtree/BSD.include.dist Sat Dec 5 10:36:23 1998 +++ /tmp/BSD.include.dist Sat Dec 12 12:52:58 1998 @@ -9,6 +9,7 @@ scsi .. .. + dev g++ std .. diff -u /usr/src/Makefile.inc1 /tmp/Makefile.inc1 --- /usr/src/Makefile.inc1 Sat Dec 5 10:34:09 1998 +++ /tmp/Makefile.inc1 Sat Dec 12 13:09:30 1998 @@ -476,13 +476,13 @@ rm -f ${DESTDIR}/usr/src/sys ln -s ${.CURDIR}/sys ${DESTDIR}/usr/src cd ${.CURDIR}/include; find -dx . | cpio -dump ${DESTDIR}/usr/include -.for d in net netatm netinet posix4 sys vm machine +.for d in dev net netatm netinet posix4 sys vm machine if [ -h ${DESTDIR}/usr/include/$d ]; then \ rm -f ${DESTDIR}/usr/include/$d ; \ fi .endfor cd ${.CURDIR}/sys; \ - find -dx net netatm netinet posix4 sys vm -name '*.h' -o -type d | \ + find -dx dev net netatm netinet posix4 sys vm -name '*.h' -o -type d | \ cpio -dump ${DESTDIR}/usr/include mkdir -p ${DESTDIR}/usr/include/machine cd ${.CURDIR}/sys/${MACHINE_ARCH}/include; find -dx . -name '*.h' -o -type d | \ --- Bruce Albrecht writes: > I just cvsupped about an hour ago, and as near as I can tell, the > usr/include/dev directory containing dsb.h is not getting created. > For the moment, I'm just going to remove the usb programs from the > usr.sbin Makefile until I can figure out where the Makefiles would > normally create and populate this subdirectory. > > ===> usr.sbin/usbd > cc -O -pipe -I../../sys -I/usr/obj/elf/usr/src/tmp/usr/include -c /usr/src/usr.sbin/usbd/usbd.c > gzip -cn /usr/src/usr.sbin/usbd/usbd.8 > usbd.8.gz > /usr/src/usr.sbin/usbd/usbd.c:50: dev/usb/usb.h: No such file or directory > /usr/src/usr.sbin/usbd/usbd.c: In function `main': > /usr/src/usr.sbin/usbd/usbd.c:152: `USB_DISCOVER' undeclared (first use this function) > /usr/src/usr.sbin/usbd/usbd.c:152: (Each undeclared identifier is reported only once > /usr/src/usr.sbin/usbd/usbd.c:152: for each function it appears in.) > *** Error code 1 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message