mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 13:27:26 +08:00
Use = instead of == for better portability
Reported by sobukus on IRC. gdb/testsuite/ChangeLog: 2020-05-26 Christian Biesinger <cbiesinger@google.com> * Makefile.in: Use = instead of == for the test command for portability. Change-Id: I431ccfa5e5ba15f9af082ffd6aa8cd7046456cd2
This commit is contained in:

committed by
Christian Biesinger

parent
57b179405a
commit
0db49895f3
@ -1,3 +1,8 @@
|
||||
2020-05-26 Christian Biesinger <cbiesinger@google.com>
|
||||
|
||||
* Makefile.in: Use = instead of == for the test command
|
||||
for portability.
|
||||
|
||||
2020-05-26 Tom de Vries <tdevries@suse.de>
|
||||
|
||||
* gdb.base/gold-gdb-index-2.c: New test.
|
||||
|
@ -209,7 +209,7 @@ check-single-racy:
|
||||
-rm -rf cache racy_outputs temp
|
||||
mkdir -p racy_outputs; \
|
||||
racyiter="$(RACY_ITER)"; \
|
||||
test "x$$racyiter" == "x" && \
|
||||
test "x$$racyiter" = "x" && \
|
||||
racyiter=$(DEFAULT_RACY_ITER); \
|
||||
if test $$racyiter -lt 2 ; then \
|
||||
echo "RACY_ITER must be at least 2."; \
|
||||
@ -239,7 +239,7 @@ check-parallel:
|
||||
check-parallel-racy:
|
||||
-rm -rf cache racy_outputs temp
|
||||
racyiter="$(RACY_ITER)"; \
|
||||
test "x$$racyiter" == "x" && \
|
||||
test "x$$racyiter" = "x" && \
|
||||
racyiter=$(DEFAULT_RACY_ITER); \
|
||||
if test $$racyiter -lt 2 ; then \
|
||||
echo "RACY_ITER must be at least 2."; \
|
||||
|
Reference in New Issue
Block a user