summaryrefslogtreecommitdiffstats
path: root/sys/conf/newvers.sh
diff options
context:
space:
mode:
authorgjb <gjb@FreeBSD.org>2013-08-11 13:57:14 +0000
committergjb <gjb@FreeBSD.org>2013-08-11 13:57:14 +0000
commit3a574dd0d6d6504922683480e277c174a98e68c2 (patch)
tree4d99d9a15331848b97104c58d651fc578751c371 /sys/conf/newvers.sh
parent68b7f99701619961575786ae568adc85ad055d5c (diff)
downloadFreeBSD-src-3a574dd0d6d6504922683480e277c174a98e68c2.zip
FreeBSD-src-3a574dd0d6d6504922683480e277c174a98e68c2.tar.gz
Use realpath(1) to determine the location of the newvers.sh script,
since the current working directory might not be what is expected, causing svn{,lite}version to fail to find ${0} (itself). Submitted by: Dan Mack
Diffstat (limited to 'sys/conf/newvers.sh')
-rw-r--r--sys/conf/newvers.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/newvers.sh b/sys/conf/newvers.sh
index e1c4014..fc15a50 100644
--- a/sys/conf/newvers.sh
+++ b/sys/conf/newvers.sh
@@ -96,7 +96,7 @@ for dir in /usr/bin /usr/local/bin; do
# Run svnversion from ${dir} on this script; if return code
# is not zero, the checkout might not be compatible with the
# svnversion being used.
- ${dir}/svnversion $(basename ${0}) >/dev/null 2>&1
+ ${dir}/svnversion $(realpath ${0}) >/dev/null 2>&1
if [ $? -eq 0 ]; then
svnversion=${dir}/svnversion
break
@@ -105,7 +105,7 @@ for dir in /usr/bin /usr/local/bin; do
done
if [ -z "${svnversion}" ] && [ -x /usr/bin/svnliteversion ] ; then
- /usr/bin/svnliteversion $(basename ${0}) >/dev/null 2>&1
+ /usr/bin/svnliteversion $(realpath ${0}) >/dev/null 2>&1
if [ $? -eq 0 ]; then
svnversion=/usr/bin/svnliteversion
else
OpenPOWER on IntegriCloud