1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-01 18:00:40 -08:00

(PKG_CHECK_MODUILES): Redirect stderr of pkg-config to /dev/null, since we

don't need the error message, just the exit status.
This commit is contained in:
Eli Zaretskii 2006-07-08 16:17:47 +00:00
parent 7f9da0f3c7
commit f240128d35

View file

@ -1500,7 +1500,7 @@ AC_DEFUN([PKG_CHECK_MODULES], [
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
AC_MSG_CHECKING(for $2)
if $PKG_CONFIG --exists "$2" ; then
if $PKG_CONFIG --exists "$2" 2> /dev/null; then
AC_MSG_RESULT(yes)
succeeded=yes