Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Oct 2013 17:03:46 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r256643 - head/sys/kern
Message-ID:  <201310161703.r9GH3kf8047557@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310161703.r9GH3kf8047557>