svn commit: r252505 - head/sys/conf

Glen Barber gjb at FreeBSD.org
Tue Jul 2 10:36:58 UTC 2013


Author: gjb
Date: Tue Jul  2 10:36:57 2013
New Revision: 252505
URL: http://svnweb.freebsd.org/changeset/base/252505

Log:
  - Update newvers.sh to include svn revision in uname(1) if the
    system has svnliteversion.
  - If svnliteversion is not found, look for svnversion in /usr/bin
    and /usr/local/bin, since svnlite can be installed as svn if
    WITH_SVN is set.[1]
  - Remove /bin from binary search paths.[1]
  
  Discussed with:	kib [1]
  MFC after:	3 days
  Approved by:	kib (mentor)

Modified:
  head/sys/conf/newvers.sh

Modified: head/sys/conf/newvers.sh
==============================================================================
--- head/sys/conf/newvers.sh	Tue Jul  2 08:44:56 2013	(r252504)
+++ head/sys/conf/newvers.sh	Tue Jul  2 10:36:57 2013	(r252505)
@@ -88,16 +88,26 @@ v=`cat version` u=${USER:-root} d=`pwd` 
 i=`${MAKE:-make} -V KERN_IDENT`
 compiler_v=$($(${MAKE:-make} -V CC) -v 2>&1 | grep 'version')
 
-for dir in /bin /usr/bin /usr/local/bin; do
+if [ -x /usr/bin/svnliteversion ] ; then
+	svnversion=/usr/bin/svnliteversion
+fi
+
+for dir in /usr/bin /usr/local/bin; do
+	if [ ! -z "${svnversion}" ] ; then
+		break
+	fi
 	if [ -x "${dir}/svnversion" ] && [ -z ${svnversion} ] ; then
 		svnversion=${dir}/svnversion
+		break
 	fi
+done
+for dir in /usr/bin /usr/local/bin; do
 	if [ -x "${dir}/p4" ] && [ -z ${p4_cmd} ] ; then
 		p4_cmd=${dir}/p4
 	fi
 done
 if [ -d "${SYSDIR}/../.git" ] ; then
-	for dir in /bin /usr/bin /usr/local/bin; do
+	for dir in /usr/bin /usr/local/bin; do
 		if [ -x "${dir}/git" ] ; then
 			git_cmd="${dir}/git --git-dir=${SYSDIR}/../.git"
 			break


More information about the svn-src-head mailing list