From 4d7d5745d634bf73aaec685ad7d04ae198ed4a63 Mon Sep 17 00:00:00 2001 From: Aaron Schrab Date: Tue, 22 Oct 2013 15:12:31 -0500 Subject: [PATCH] version.sh: step back from $() to ``. closes #3661 (grafted from 01cf5814dfe5e79b65b1d950aab1276d19a9f031) --- version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.sh b/version.sh index ba8463be1..d7988df72 100644 --- a/version.sh +++ b/version.sh @@ -5,7 +5,7 @@ HG=hg # Switch to directory where this script lives so that further commands are run # from the root directory of the source. The script path and srcdir are double # quoted to allow the space character to appear in the path. -srcdir=$(dirname "$0") && cd "$srcdir" || exit 1 +srcdir=`dirname "$0"` && cd "$srcdir" || exit 1 # Ensure that we have a repo here and that mercurial is installed. If # not, just cat the VERSION file; it contains the latest release number. -- 2.40.0