Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 05/08/1997 05:20:01
cjs
Wed May  7 22:19:47 PDT 1997
Update of /a/cvsroot/src/usr.bin/make
In directory netbsd1:/var/slash-tmp/cvs-serv6312

Modified Files:
	main.c 
Log Message:
If the -m option is used, make will check for the existence of the
directory specified, and add it to sysIncPath only if it exists.
However, afterwards make tested for the presence of a -m option by
checking to see if sysIncPath was an empty list, and assumed that
the -m option was not used if it was empty. This obviously breaks
if -m specified a non-existent directory. So I have added a flag
that is set if the -m option is used, and I test that instead.