Kaydet (Commit) 62025f74 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Hide a potential error message which we aren't interested in seeing

üst c70cedab
...@@ -4117,7 +4117,7 @@ dnl =================================================================== ...@@ -4117,7 +4117,7 @@ dnl ===================================================================
if test "$GXX" = "yes"; then if test "$GXX" = "yes"; then
AC_MSG_CHECKING([for g++ include path]) AC_MSG_CHECKING([for g++ include path])
if test -z "$with_gxx_include_path"; then 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 if test "$with_gxx_include_path" = "/usr/libexec/(null)/include"; then
with_gxx_include_path="/usr/include" with_gxx_include_path="/usr/include"
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment