diff options
author | Cyril Brulebois <kibi@debian.org> | 2010-10-31 15:50:36 +0100 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-10-31 12:03:36 -0700 |
commit | cc23acdd80fa0cad53e46f99cd0ff5998ec7f607 (patch) | |
tree | c1d3a91fa3191f8b804c8ae51f22f69a7f91d416 | |
parent | 186aae76a84860d0efef638ff499ab1968fffd75 (diff) |
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-x | tests/28045/makedep.sh | 2 |
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 |