Subject: Re: vm/vm.h
To: None <port-arm32@netbsd.org>
From: Ignatios Souvatzis <ignatios@cs.uni-bonn.de>
List: port-arm32
Date: 07/15/2000 17:25:19
On Sat, Jul 15, 2000 at 05:17:17PM +0200, Jan-Uwe Finck wrote:
> While trying to recompile a kernel on a RiscPC600 I stumbled across
> a missing vm/vm.h while a 'make depend'.
> 
> Strange, as the file itself is there, I checked it.
> It must be the result of playing around with snapshots and
> -current. 

Uhm... maybe it is in /usr/include (which is not relevant for kernel
builds), but not in /usr/src/sys ?

In this case, you have upgraded your kernel sources. Your old .depend
files still contain the vm/vm* references, thats why you get the error.

in your kernel build directory:

rm .depend */*/.depend && make depend && make

Regards,
	-is