Subject: Conflicting flags in include/Makefile ...
To: None <tech-ports@netbsd.org>
From: Andrew Cagney <cagney@highland.com.au>
List: tech-ports
Date: 11/22/1994 20:22:28
Hello,

(Oops this is in reference to a NetBSD-1.0-Beta)

The make file include/Makefile in the case of a copy install, uses a line like:

	pax -rw -pa -L  `find dev net netinet netccitt netiso netns nfs sys ufs
vm  -type f -name '*.h' '!' -path 'netiso/xebec/*'  -print`
/usr/local/src/clayton/usr/include

to perform the copy.

Interestingly:

	pax -L will follow symbolic links when doing the copy
but	find -type f won't find them!

(No marks for guessing what most of my source tree consists of :-)
Probably the correct fix is to add the `-h' (or is that `-H' :-) option
to find.

				Andrew