svn commit: r254184 - head/sys/conf

Glen Barber gjb at FreeBSD.org
Sat Aug 10 18:23:19 UTC 2013


Author: gjb
Date: Sat Aug 10 18:23:18 2013
New Revision: 254184
URL: http://svnweb.freebsd.org/changeset/base/254184

Log:
  Fix a typo.  The script should run /usr/bin/svnliteversion instead of
  /usr/bin/svnversion in the affected section.
  
  Reported by:	lev, Dan Mack

Modified:
  head/sys/conf/newvers.sh

Modified: head/sys/conf/newvers.sh
==============================================================================
--- head/sys/conf/newvers.sh	Sat Aug 10 17:45:54 2013	(r254183)
+++ head/sys/conf/newvers.sh	Sat Aug 10 18:23:18 2013	(r254184)
@@ -105,7 +105,7 @@ for dir in /usr/bin /usr/local/bin; do
 done
 
 if [ -z "${svnversion}" ] && [ -x /usr/bin/svnliteversion ] ; then
-	/usr/bin/svnversion $(basename ${0}) >/dev/null 2>&1
+	/usr/bin/svnliteversion $(basename ${0}) >/dev/null 2>&1
 	if [ $? -eq 0 ]; then
 		svnversion=/usr/bin/svnliteversion
 	else


More information about the svn-src-all mailing list