summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/vc-key.sh
diff options
context:
space:
mode:
authorMartin Erik Werner <martinerikwerner@gmail.com>2017-11-12 15:39:53 +0100
committerChris Johns <chrisj@rtems.org>2017-11-13 08:13:16 +1100
commitf5b3c0244c26e291473ca72c09cec0490f7bb462 (patch)
treea56b59c4e05b03501961e251d1909f445793c3c9 /cpukit/sapi/vc-key.sh
parenttests: Use ld to map (wrap) printf, puts and putchar to tester functions. (diff)
downloadrtems-f5b3c0244c26e291473ca72c09cec0490f7bb462.tar.bz2
Fix bashism in vc-key.sh
Change "==" to "=", since "==" for comparison is not available in POSIX sh. Signed-off-by: Martin Erik Werner <martinerikwerner@gmail.com>
Diffstat (limited to 'cpukit/sapi/vc-key.sh')
-rwxr-xr-xcpukit/sapi/vc-key.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/sapi/vc-key.sh b/cpukit/sapi/vc-key.sh
index c628a1e26d..3c8f446d3f 100755
--- a/cpukit/sapi/vc-key.sh
+++ b/cpukit/sapi/vc-key.sh
@@ -15,7 +15,7 @@ if test $# -ge 1; then
cd $repo
if test -n ${git}; then
git rev-parse --git-dir > /dev/null 2>&1
- if test $? == 0; then
+ if test $? = 0; then
git status > /dev/null 2>&1
if git diff-index --quiet HEAD --; then
modified=""
@@ -24,7 +24,7 @@ if test $# -ge 1; then
fi
vc_ident="$(git rev-parse --verify HEAD)${modified}"
if test $# -ge 1; then
- if test "${vc_ident}" == "$1"; then
+ if test "${vc_ident}" = "$1"; then
vc_ident="matches"
fi
fi