summaryrefslogtreecommitdiff
path: root/build_tools
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2010-09-24 22:44:41 +0000
committerShaun Ruffell <sruffell@digium.com>2010-09-24 22:44:41 +0000
commit8a23e593473641209b79ac84886618ef8bcf5a4f (patch)
tree37509d348f5c2b2323ef022274871d9510d0072a /build_tools
parent28ff1b763c119bcbd7fe41566f28e8e6b687cf0b (diff)
make_version: '[[' -> '[' since it's not a bash script.
'[[' is a bash construct specifically, yet #!/bin/sh is at the top of the file. Signed-off-by: Shaun Ruffell <sruffell@digium.com> Acked-by: Kinsey Moore <kmoore@digium.com> Acked-by: Russ Meyerriecks <rmeyerriecks@digium.com> Acked-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com> Review: https://reviewboard.asterisk.org/r/940/ git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9408 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'build_tools')
-rwxr-xr-xbuild_tools/make_version6
1 files changed, 3 insertions, 3 deletions
diff --git a/build_tools/make_version b/build_tools/make_version
index 6946831..e61580f 100755
--- a/build_tools/make_version
+++ b/build_tools/make_version
@@ -60,8 +60,8 @@ elif [ -d .git ]; then
SVN_REV=`git log --pretty=full -1 | grep -F "git-svn-id:" | sed -e "s/.*\@\([^\s]*\)\s.*/\1/g"`
if [ -z "$SVN_REV" ]; then
VERSION=`git describe --long --always --tags --dirty=M 2> /dev/null`
- if [[ $? -ne 0 ]]; then
- if [[ "`git ls-files -m | wc -l`" != "0" ]]; then
+ if [ $? -ne 0 ]; then
+ if [ "`git ls-files -m | wc -l`" != "0" ]; then
MODIFIED="M"
fi
# Some older versions of git do not support all the above
@@ -74,7 +74,7 @@ elif [ -d .git ]; then
BRANCH=0
TEAM=0
- if [[ "`git ls-files -m | wc -l`" != "0" ]]; then
+ if [ "`git ls-files -m | wc -l`" != "0" ]; then
MODIFIED="M"
fi