configure: add missing quotes around user-specified tool paths

Found-by: Luke Jolliffe <luke.jolliffe@bbc.co.uk>
This commit is contained in:
Ramiro Polla
2026-04-09 17:54:31 +02:00
parent c1d4fe8b44
commit 31f280e1e6

4
configure vendored
View File

@@ -5074,7 +5074,7 @@ elif is_in -static $cc $LDFLAGS && ! is_in --static $pkg_config $pkg_config_flag
Note: When building a static binary, add --pkg-config-flags=\"--static\"."
fi
if test $doxygen != $doxygen_default && \
if test "$doxygen" != "$doxygen_default" && \
! $doxygen --version >/dev/null 2>&1; then
warn "Specified doxygen \"$doxygen\" not found, API documentation will fail to build."
fi
@@ -7631,7 +7631,7 @@ if enabled makeinfo_command; then
[ 0$($makeinfo --version | grep "texinfo" | sed 's/.*texinfo[^0-9]*\([0-9]*\)\..*/\1/') -ge 5 ] \
&& enable makeinfo_html || disable makeinfo_html
else
if test $makeinfo != $makeinfo_default ; then
if test "$makeinfo" != "$makeinfo_default" ; then
warn "Specified makeinfo \"$makeinfo\" not found."
fi
fi