Subject: problem with sh's Makefile
To: None <tech-userlevel@netbsd.org>
From: Manuel Bouyer <bouyer@antioche.lip6.fr>
List: tech-userlevel
Date: 04/14/1999 13:51:24
Hi,
There's a problem in the src/bin/sh/Makefile which causes the i386 miniroot
build to fails, because it tries to execute
.//share/1.4/src/distrib/utils/../../bin/sh/mkinit
(note the leading './').
This is because of the following rule:
init.c: mkinit ${SHSRCS}
	./${.ALLSRC}
Changing this to 
init.c: mkinit ${SHSRCS}
	${.ALLSRC}
will break if there's no '.' in $PATH (unless I missed something).
Does someone have an idea on a better solution ?

--
Manuel Bouyer, LIP6, Universite Paris VI.           Manuel.Bouyer@lip6.fr
--