diff options
author | joerg <joerg@pkgsrc.org> | 2020-03-26 21:48:41 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2020-03-26 21:48:41 +0000 |
commit | 28dc84dab10778d993f235a17689e5abb8e33e6e (patch) | |
tree | 01b0d18846b2a923268f8cf8797b541c6a4bfe28 /cross | |
parent | 30b21d0cc56357f6a67028dfbb8dac4f05165baf (diff) | |
download | pkgsrc-28dc84dab10778d993f235a17689e5abb8e33e6e.tar.gz |
Fix shell portability
Diffstat (limited to 'cross')
-rw-r--r-- | cross/avr-gdb/distinfo | 3 | ||||
-rw-r--r-- | cross/avr-gdb/patches/patch-gdb_testsuite_Makefile.in | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/cross/avr-gdb/distinfo b/cross/avr-gdb/distinfo index 73440c6b13c..0253268578a 100644 --- a/cross/avr-gdb/distinfo +++ b/cross/avr-gdb/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.13 2017/01/29 05:18:09 mef Exp $ +$NetBSD: distinfo,v 1.14 2020/03/26 21:48:41 joerg Exp $ SHA1 (gdb-7.12.1.tar.gz) = e0dfaa153d162ae23fd81d05ea87864a634b6da8 RMD160 (gdb-7.12.1.tar.gz) = 54c68518b07c4792ac6623f93ea2ae699ad697f9 SHA512 (gdb-7.12.1.tar.gz) = 84e7350bc5131a37ce593b9b7ad65160f0ccad172067592dad005c1a64da87b8dcf9471e4e5d882cb36c4c7a1ab5ecb6ef3b8549d8187dec0bf2852af435fc38 Size (gdb-7.12.1.tar.gz) = 35788041 bytes SHA1 (patch-ac) = 2975101bbbd4a2e19fb9364b494a18e3940d9bac +SHA1 (patch-gdb_testsuite_Makefile.in) = 33612cb12aa6c6621fb74e000cf3522c57169b8b diff --git a/cross/avr-gdb/patches/patch-gdb_testsuite_Makefile.in b/cross/avr-gdb/patches/patch-gdb_testsuite_Makefile.in new file mode 100644 index 00000000000..f8c1295d4f1 --- /dev/null +++ b/cross/avr-gdb/patches/patch-gdb_testsuite_Makefile.in @@ -0,0 +1,22 @@ +$NetBSD: patch-gdb_testsuite_Makefile.in,v 1.1 2020/03/26 21:48:41 joerg Exp $ + +--- gdb/testsuite/Makefile.in.orig 2020-03-26 14:22:02.641157595 +0000 ++++ gdb/testsuite/Makefile.in +@@ -201,7 +201,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."; \ +@@ -231,7 +231,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."; \ |