diff options
author | fanquake <fanquake@gmail.com> | 2021-11-10 11:48:55 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-11-12 14:31:59 +0800 |
commit | c39732694df77f2585bcf7d1f621048cf6468879 (patch) | |
tree | d50079b19d70022a29e67060e71000b6a5c5b256 /configure.ac | |
parent | 80762dfc45077ece3ef65bcce6b57552e87071b1 (diff) |
build: consistently quote AC_CHECK_PROG() arguments
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e6b6a6c253..a9d13da4b1 100644 --- a/configure.ac +++ b/configure.ac @@ -675,7 +675,7 @@ case $host in if test x$cross_compiling != xyes; then BUILD_OS=darwin 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 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 |