Correct shell compatibility issue detected with pkgsrc.
authorKamil Rytarowski <n54@gmx.com>
Wed, 6 Sep 2017 16:48:49 +0000 (18:48 +0200)
committerKamil Rytarowski <n54@gmx.com>
Wed, 6 Sep 2017 16:52:08 +0000 (18:52 +0200)
String comparison of in a POSIX bourne shell must be done
with '=', not '=='. For example the NetBSD sh(1) does not
support it.

gdb/ChangeLog
2017-09-06  Kamil Rytarowski  <n54@gmx.com>

* config/djgpp/djconfig.sh: Correct shell portability issue.

gdb/ChangeLog
gdb/config/djgpp/djconfig.sh

index 91784031ffa3f30008df7eda117c1fb50a8860a5..ed665479660dc9d5e4face1f8c1e5ff1985f5429 100644 (file)
@@ -1,3 +1,7 @@
+2017-09-06  Kamil Rytarowski  <n54@gmx.com>
+
+       * config/djgpp/djconfig.sh: Correct shell portability issue.
+
 2017-09-06  Kamil Rytarowski  <n54@gmx.com>
 
        * configure.nat: Define HAVE_NATIVE_GCORE_HOST on NetBSD.
index 6c0d8698e84deca5bdbfeca32ccbb2b31614c79f..dbaf8f5d76dc76b3b8e69dd2f782f21e9f1cfa43 100644 (file)
@@ -92,7 +92,7 @@ TMPFILE="${TMPDIR-.}/cfg.tmp"
 
 # We need to skip the build directory if it is a subdirectory of $srcdir,
 # otherwise we will have an infinite recursion on our hands...
-if test "`pwd`" == "${srcdir}" ; then
+if test "`pwd`" = "${srcdir}" ; then
   SKIPDIR=""
   SKIPFILES=""
 else