From a55e30b51bc6227d8d41f707654d0a5620978dcf Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Tue, 28 Apr 2020 14:29:39 -0400 Subject: gdb: fix shellcheck warning in update-freebsd.sh shellcheck reports: In update-freebsd.sh line 72: }' $1 >> freebsd.xml.tmp ^-- SC2086: Double quote to prevent globbing and word splitting. Did you mean: }' "$1" >> freebsd.xml.tmp For more information: https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ... Add double quotes to fix it. gdb/ChangeLog: * syscalls/update-freebsd.sh: Add double quotes. --- gdb/syscalls/update-freebsd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/syscalls') diff --git a/gdb/syscalls/update-freebsd.sh b/gdb/syscalls/update-freebsd.sh index 7b177f3..5d96026 100755 --- a/gdb/syscalls/update-freebsd.sh +++ b/gdb/syscalls/update-freebsd.sh @@ -69,7 +69,7 @@ awk ' } /\/\* [0-9]* is freebsd[0-9]* [a-z_]* \*\// { printf " \n", $4, $5, $2, $5 -}' $1 >> freebsd.xml.tmp +}' "$1" >> freebsd.xml.tmp cat >> freebsd.xml.tmp < -- cgit v1.1