summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyril Brulebois <kibi@debian.org>2010-10-31 15:50:36 +0100
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-10-31 12:03:36 -0700
commitcc23acdd80fa0cad53e46f99cd0ff5998ec7f607 (patch)
treec1d3a91fa3191f8b804c8ae51f22f69a7f91d416
parent186aae76a84860d0efef638ff499ab1968fffd75 (diff)
downloadxorg-util-makedepend-cc23acdd80fa0cad53e46f99cd0ff5998ec7f607.tar.gz
Fix bashism: shell string comparison is =, not ==.
Signed-off-by: Cyril Brulebois <kibi@debian.org> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rwxr-xr-xtests/28045/makedep.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/28045/makedep.sh b/tests/28045/makedep.sh
index 322e8a0..f344b48 100755
--- a/tests/28045/makedep.sh
+++ b/tests/28045/makedep.sh
@@ -5,7 +5,7 @@
set -e
-if [ "x$MAKEDEPEND" == "x" ]; then
+if [ "x$MAKEDEPEND" = "x" ]; then
MAKEDEPEND=makedepend
fi