From a55e30b51bc6227d8d41f707654d0a5620978dcf Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Tue, 28 Apr 2020 14:29:39 -0400 Subject: [PATCH] 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/ChangeLog | 4 ++++ gdb/syscalls/update-freebsd.sh | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bd2c9b030a..81983103ac 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-04-28 Simon Marchi + + * syscalls/update-freebsd.sh: Add double quotes. + 2020-04-28 Tom Tromey * NEWS: Update. diff --git a/gdb/syscalls/update-freebsd.sh b/gdb/syscalls/update-freebsd.sh index 7b177f3115..5d9602641b 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 <