svn commit: r261532 - stable/10/sys/conf

Rui Paulo rpaulo at FreeBSD.org
Thu Feb 6 02:12:40 UTC 2014


Author: rpaulo
Date: Thu Feb  6 02:12:39 2014
New Revision: 261532
URL: http://svnweb.freebsd.org/changeset/base/261532

Log:
  MFC r261432
   Fix the definition of hg_cmd.

Modified:
  stable/10/sys/conf/newvers.sh
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/conf/newvers.sh
==============================================================================
--- stable/10/sys/conf/newvers.sh	Wed Feb  5 23:13:40 2014	(r261531)
+++ stable/10/sys/conf/newvers.sh	Thu Feb  6 02:12:39 2014	(r261532)
@@ -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