From dfd4e2a43819e15638ffb561ad13d5b6a7e5cb7e Mon Sep 17 00:00:00 2001 From: Shaun Ruffell Date: Fri, 24 Sep 2010 22:44:41 +0000 Subject: 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 Acked-by: Kinsey Moore Acked-by: Russ Meyerriecks Acked-by: Tzafrir Cohen Review: https://reviewboard.asterisk.org/r/940/ git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9408 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- build_tools/make_version | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build_tools') 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 -- cgit v1.2.3