summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorPeter Maydell2022-07-20 17:26:27 +0200
committerPeter Maydell2022-07-26 14:40:44 +0200
commit35a7a6fc5624b1df828d82f2dfa74d0e4188b3b2 (patch)
tree64e342d69ca8ab46590dff9d02722e15e660c374 /configure
parenttarget/arm: Add MO_128 entry to pred_esz_masks[] (diff)
downloadqemu-35a7a6fc5624b1df828d82f2dfa74d0e4188b3b2.tar.gz
qemu-35a7a6fc5624b1df828d82f2dfa74d0e4188b3b2.tar.xz
qemu-35a7a6fc5624b1df828d82f2dfa74d0e4188b3b2.zip
configure: Add missing POSIX-required space
In commit 7d7dbf9dc15be6e1 we added a line to the configure script which is not valid POSIX shell syntax, because it is missing a space after a '!' character. shellcheck diagnoses this: if !(GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then ^-- SC1035: You are missing a required space after the !. and the OpenBSD shell will not correctly handle this without the space. Fixes: 7d7dbf9dc15be6e1 ("configure: replace --enable/disable-git-update with --with-git-submodules") Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Tested-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Message-id: 20220720152631.450903-2-peter.maydell@linaro.org
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 35e0b28198..dec6f03034 100755
--- a/configure
+++ b/configure
@@ -2425,7 +2425,7 @@ else
cxx=
fi
-if !(GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then
+if ! (GIT="$git" "$source_path/scripts/git-submodule.sh" "$git_submodules_action" "$git_submodules"); then
exit 1
fi