Skip to content

Commit c397326

Browse files
committed
build: consistently quote AC_CHECK_PROG() arguments
1 parent 80762df commit c397326

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ case $host in
675675
if test x$cross_compiling != xyes; then
676676
BUILD_OS=darwin
677677
AC_PATH_PROGS([RSVG_CONVERT], [rsvg-convert rsvg], [rsvg-convert])
678-
AC_CHECK_PROG([BREW],brew, brew)
678+
AC_CHECK_PROG([BREW], [brew], [brew])
679679
if test x$BREW = xbrew; then
680680
dnl These Homebrew packages may be keg-only, meaning that they won't be found
681681
dnl in expected paths because they may conflict with system files. Ask

0 commit comments

Comments
 (0)