Fix shellcheck issues in the make-check-all.sh script. These are just
quoting issues, and should have no functional impact.
There should be no changes in what is tested after this commit.
Approved-By: Tom Tromey <tom@tromey.com>
for b in "${target_boards[@]}"; do
echo "TARGET BOARD: $b"
rtf=(
- --target_board="$b"
+ "--target_board=$b"
)
rtf_for_board "$b"
maketarget_for_board "$b"
for b in "${gdbserver_boards[@]}" "${remote_gdbserver_boards[@]}"; do
echo "TARGET BOARD: $b"
rtf=(
- --target_board="$b"
+ "--target_board=$b"
)
rtf_for_board "$b"
maketarget_for_board "$b"
for b in "${remote_gdbserver_boards[@]}"; do
echo "HOST BOARD: $h, TARGET BOARD: $b"
rtf=(
- --host_board="$h"
- --target_board="$b"
+ "--host_board=$h"
+ "--target_board=$b"
)
rtf_for_board "$h"
rtf_for_board "$b"
for b in "${host_target_boards[@]}"; do
echo "HOST/TARGET BOARD: $b"
rtf=(
- --host_board="$b"
- --target_board="$b"
+ "--host_board=$b"
+ "--target_board=$b"
)
rtf_for_board "$b"
maketarget_for_board "$b"