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 _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"