summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-03-02 16:29:28 +0200
committerTor Lillqvist <tml@iki.fi>2012-03-02 16:29:28 +0200
commit62025f7446989c1a29596a2c4cb5ef597808f15e (patch)
tree8cab7e0011d87344be8ae53d9d68ebc45359dfc5 /configure.in
parentc70cedabd3da7f6af16af5f8784271d6398f4678 (diff)
Hide a potential error message which we aren't interested in seeing
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 958d4bcfba30..3df3a8f2f00b 100644
--- a/configure.in
+++ b/configure.in
@@ -4117,7 +4117,7 @@ dnl ===================================================================
if test "$GXX" = "yes"; then
AC_MSG_CHECKING([for g++ include path])
if test -z "$with_gxx_include_path"; then
- with_gxx_include_path=`echo "#include <cstring>" | $CXX -E -xc++ - | $SED -n '/.*1*"\(.*\)\/cstring".*/s//\1/p' | head -n 1`
+ with_gxx_include_path=`echo "#include <cstring>" | $CXX -E -xc++ - 2>/dev/null | $SED -n '/.*1*"\(.*\)\/cstring".*/s//\1/p' | head -n 1`
if test "$with_gxx_include_path" = "/usr/libexec/(null)/include"; then
with_gxx_include_path="/usr/include"
fi