Change "==" to "=", since "==" for comparison is not available in POSIX sh.
Signed-off-by: Martin Erik Werner <martinerikwer...@gmail.com> --- cpukit/sapi/vc-key.sh | 4 ++-- 1 file 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 -- 2.11.0 _______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel