build: consistently quote AC_CHECK_PROG() arguments

This commit is contained in:
fanquake
2021-11-10 11:48:55 +08:00
parent 80762dfc45
commit c39732694d

View File

@ -675,7 +675,7 @@ case $host in
if test x$cross_compiling != xyes; then if test x$cross_compiling != xyes; then
BUILD_OS=darwin BUILD_OS=darwin
AC_PATH_PROGS([RSVG_CONVERT], [rsvg-convert rsvg], [rsvg-convert]) AC_PATH_PROGS([RSVG_CONVERT], [rsvg-convert rsvg], [rsvg-convert])
AC_CHECK_PROG([BREW],brew, brew) AC_CHECK_PROG([BREW], [brew], [brew])
if test x$BREW = xbrew; then if test x$BREW = xbrew; then
dnl These Homebrew packages may be keg-only, meaning that they won't be found dnl These Homebrew packages may be keg-only, meaning that they won't be found
dnl in expected paths because they may conflict with system files. Ask dnl in expected paths because they may conflict with system files. Ask