OSDN Git Service

configure: Avoid use of 'local' as it is non-POSIX
authorPeter Maydell <peter.maydell@linaro.org>
Thu, 25 Aug 2022 15:07:03 +0000 (16:07 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 22 Sep 2022 15:38:29 +0000 (16:38 +0100)
commitb3b5472db0ab7a53499441c1fe1dedec05b1e285
treed1c5b0abfe1977db882158516efea39c69a62124
parent563661c05677ad7c4b3f956507f3529df42afbf7
configure: Avoid use of 'local' as it is non-POSIX

We use the non-POSIX 'local' keyword in just two places in configure;
rewrite to avoid it.

In do_compiler(), just drop the 'local' keyword.  The variable
'compiler' is only used elsewhere in the do_compiler_werror()
function, which already uses the variable as a normal non-local one.

In probe_target_compiler(), $try and $t are both local; make them
normal variables and use a more obviously distinct variable name
for $t.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20220825150703.4074125-8-peter.maydell@linaro.org
configure