[CUWiN-Dev] Re: new patch for makeplist

Bill Comisky bcomisky at pobox.com
Wed Jan 12 00:11:35 CST 2005


On Tue, 11 Jan 2005, David Young wrote:

> Bill,
>
> Give this patch a shot.  It applies to src/distrib/sets/makeplist in
> your 0.5.4 NetBSD sources.

That mostly did the trick.  The find -mindepth option is still used once 
in user.subr.  I just replaced find with the just-built version in 
$DESTDIR/usr/bin (see attached) as a workaround.

Also the zebra problem was the same one I've had in the past, no 
autoconf and automake installed on the build machine.  Once I installed 
those, the build went smoothly.  I'll boot the image to make sure 
tomorrow.

bill

--
Bill Comisky
bcomisky at pobox.com
-------------- next part --------------
Index: src/boot-image/user.subr
===================================================================
--- src/boot-image/user.subr	(revision 2423)
+++ src/boot-image/user.subr	(working copy)
@@ -83,7 +83,7 @@
 		[ -d $DESTDIR/$homedir ] && continue
 		$INSTALL -d -o $uname -g $gname -m 755 $DESTDIR/$homedir
 		# copy in the skeleton directory
-		find $DESTDIR/etc/skel -mindepth 1 | \
+		$DESTDIR/usr/bin/find $DESTDIR/etc/skel -mindepth 1 | \
 		sed 's,^'$DESTDIR'/etc/skel/,,' | \
 		while read skelfile; do
 			$INSTALL -N $DESTDIR/etc -o $uname -g $gname \


More information about the CU-Wireless-Dev mailing list