Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Aug 2013 18:23:19 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r254184 - head/sys/conf
Message-ID:  <201308101823.r7AINJbC019544@svn.freebsd.org>

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



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