svn commit: r261432 - head/sys/conf

Rui Paulo rpaulo at FreeBSD.org
Mon Feb 3 08:15:10 UTC 2014


Author: rpaulo
Date: Mon Feb  3 08:15:09 2014
New Revision: 261432
URL: http://svnweb.freebsd.org/changeset/base/261432

Log:
  Fix the definition of hg_cmd.
  
  MFC after:	3 days

Modified:
  head/sys/conf/newvers.sh

Modified: head/sys/conf/newvers.sh
==============================================================================
--- head/sys/conf/newvers.sh	Mon Feb  3 08:13:44 2014	(r261431)
+++ head/sys/conf/newvers.sh	Mon Feb  3 08:15:09 2014	(r261432)
@@ -133,7 +133,7 @@ fi
 if [ -d "${SYSDIR}/../.hg" ] ; then
 	for dir in /usr/bin /usr/local/bin; do
 		if [ -x "${dir}/hg" ] ; then
-			hg_cmd="${dir}/hg -R ${SYSDIR}/../.hg"
+			hg_cmd="${dir}/hg -R ${SYSDIR}/.."
 			break
 		fi
 	done


More information about the svn-src-all mailing list