svn commit: r256643 - head/sys/kern

Ed Maste emaste at FreeBSD.org
Wed Oct 16 17:03:47 UTC 2013


Author: emaste
Date: Wed Oct 16 17:03:46 2013
New Revision: 256643
URL: http://svnweb.freebsd.org/changeset/base/256643

Log:
  Error out on failure to open specified config file

Modified:
  head/sys/kern/makesyscalls.sh

Modified: head/sys/kern/makesyscalls.sh
==============================================================================
--- head/sys/kern/makesyscalls.sh	Wed Oct 16 17:00:21 2013	(r256642)
+++ head/sys/kern/makesyscalls.sh	Wed Oct 16 17:03:46 2013	(r256643)
@@ -57,7 +57,7 @@ case $# in
 	;;
 esac
 
-if [ -n "$2" -a -f "$2" ]; then
+if [ -n "$2" ]; then
 	. $2
 fi
 


More information about the svn-src-head mailing list