svn commit: r288183 - stable/10/sys/kern
Ed Maste
emaste at FreeBSD.org
Thu Sep 24 19:32:09 UTC 2015
Author: emaste
Date: Thu Sep 24 19:32:08 2015
New Revision: 288183
URL: https://svnweb.freebsd.org/changeset/base/288183
Log:
MFC r256643: makesyscalls.sh: Error on failure to open specified config file
Modified:
stable/10/sys/kern/makesyscalls.sh
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/kern/makesyscalls.sh
==============================================================================
--- stable/10/sys/kern/makesyscalls.sh Thu Sep 24 19:28:53 2015 (r288182)
+++ stable/10/sys/kern/makesyscalls.sh Thu Sep 24 19:32:08 2015 (r288183)
@@ -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-stable-10
mailing list