libgo: fix quoting in mksigtab.sh
authorIan Lance Taylor <ian@gcc.gnu.org>
Tue, 28 Feb 2017 15:09:43 +0000 (15:09 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Tue, 28 Feb 2017 15:09:43 +0000 (15:09 +0000)
    The quoting was causing us to never add the system-specific signals.

    The test for this is misc/cgo/testcarchive in the master repo, which
    we don't yet run for gccgo.

    Reviewed-on: https://go-review.googlesource.com/37453

From-SVN: r245776

gcc/go/gofrontend/MERGE
libgo/mksigtab.sh

index 9cf7ec34f4ab8399f4436db0c4856106d0291803..46b0d1cd3e1bba3119abf24757575638bb76c41d 100644 (file)
@@ -1,4 +1,4 @@
-893f0e4a707c6f10eb14842b18954486042f0fb3
+0bcc1bc98dca48af40d9f54f4eacbbafaa30beb1
 
 The first line of this file holds the git revision number of the last
 merge done from the gofrontend repository.
index d33b7e2ff0b246e6a52e0fff7bd8d617cae2fffd..78b1655a517a00be5f4aef7eea3c11d522dbd5fc 100644 (file)
@@ -56,7 +56,7 @@ echo '        _SIGSYS:    {_SigThrow, "SIGSYS: bad system call"},'
 # Handle signals that are not supported on all systems.
 
 checksig() {
-    if grep 'const $1 = ' gen-sysinfo.go >/dev/null 2>&1; then
+    if grep "const $1 = " gen-sysinfo.go >/dev/null 2>&1; then
        echo "  $1: $2,"
     fi
 }