]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
build_tools/make_version: Fix bashism in comparison.
authorSean Bright <sean.bright@gmail.com>
Tue, 1 Feb 2022 16:09:58 +0000 (11:09 -0500)
committerJoshua Colp <jcolp@sangoma.com>
Tue, 1 Feb 2022 20:31:31 +0000 (14:31 -0600)
In POSIX sh (which we indicate in the shebang), there is no ==
operator.

Change-Id: Ic03d38214d14cdf329b0ba272279a815bb532965

build_tools/make_version

index 6ef7b2941d6ca7d063ef145048e63fe734bd5b7c..aefe6b1c83f6cede04ef86edaeb1698913f8887b 100755 (executable)
@@ -101,7 +101,7 @@ elif [ -d ${1}/.git ]; then
     SVN_REV=`${GIT} log --pretty=full -1 | sed -n '/git-svn-id:/ s/.*\@\([^ ]*\) .*/\1/p'`
     if [ -z "$SVN_REV" ]; then
         MAINLINE_BRANCH=$(${GIT} config -f .gitreview --get gerrit.basebranch)
-        if [ "x${MAINLINE_BRANCH}" == "x" ] ; then
+        if [ "x${MAINLINE_BRANCH}" = "x" ] ; then
             MAINLINE_BRANCH=$(${GIT} config -f .gitreview --get gerrit.defaultbranch)
         fi