From 5d805ca6229a56bc74337689d2a7129a14185e16 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 28 Feb 2017 15:09:43 +0000 Subject: libgo: fix quoting in mksigtab.sh 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 --- libgo/mksigtab.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgo/mksigtab.sh') diff --git a/libgo/mksigtab.sh b/libgo/mksigtab.sh index d33b7e2ff0b..78b1655a517 100644 --- a/libgo/mksigtab.sh +++ b/libgo/mksigtab.sh @@ -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 } -- cgit v1.2.3