Subject: Include paths and config(8)
To: None <port-masters@NetBSD.ORG>
From: Greg Hudson <ghudson@MIT.EDU>
List: tech-kern
Date: 09/21/1996 02:23:16
As a result of some post-1.2 config(8) changes checked in in August,
you may need to modify some of the "include" directives in your port
files.

	* If you use `include "foo.std"' in your kernel configuration
	  files, you must change them to `include
	  "arch/foo/conf/foo.std"'.  Until you do that, your port
	  won't configure with the new config.

	* Look over your files.* files.  If you see any instances of
	  `include "../../../foobar"', change it to `include
	  "foobar"'; that is, get rid of the "../../../".  This change
	  is not strictly necessary for now because of a kludge in
	  config, but it may become necessary in the near future.