aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2006-07-14 12:04:25 +0000
committerEli Zaretskii2006-07-14 12:04:25 +0000
commit4543c9088eea70c5ecda2555d546885e8b875db6 (patch)
tree9d27fff806499154aef49bc77cfa913c72429c8b
parent0779eeea8fa08f9c223840ea511c6f329557bbfe (diff)
downloademacs-4543c9088eea70c5ecda2555d546885e8b875db6.tar.gz
emacs-4543c9088eea70c5ecda2555d546885e8b875db6.zip
(PKG_CHECK_MODULES): Redirect the output of $PKG_CONFIG --exists "$2"
to config.log.
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 48ba5d0b2e6..f6fe08f8f54 100644
--- a/configure.in
+++ b/configure.in
@@ -1500,7 +1500,7 @@ AC_DEFUN([PKG_CHECK_MODULES], [
1500 if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 1500 if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
1501 AC_MSG_CHECKING(for $2) 1501 AC_MSG_CHECKING(for $2)
1502 1502
1503 if $PKG_CONFIG --exists "$2" 2> /dev/null; then 1503 if $PKG_CONFIG --exists "$2" 2>&5; then
1504 AC_MSG_RESULT(yes) 1504 AC_MSG_RESULT(yes)
1505 succeeded=yes 1505 succeeded=yes
1506 1506