mirror of
https://github.com/xemu-project/xemu.git
synced 2025-04-02 11:11:48 -04:00
configure: Avoid '==' bashism
The '==' operator to test is a bashism; the standard way to copmare strings is '='. This causes dash to complain: ../../configure: 681: test: linux: unexpected operator Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-id: 20220720152631.450903-6-peter.maydell@linaro.org
This commit is contained in:
parent
aca5001dab
commit
c5cfdabaf5
1 changed files with 1 additions and 1 deletions
2
configure
vendored
2
configure
vendored
|
@ -678,7 +678,7 @@ werror=""
|
|||
|
||||
meson_option_build_array() {
|
||||
printf '['
|
||||
(if test "$targetos" == windows; then
|
||||
(if test "$targetos" = windows; then
|
||||
IFS=\;
|
||||
else
|
||||
IFS=:
|
||||
|
|
Loading…
Add table
Reference in a new issue