]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acgeneral.m4 (_AC_PREPROC_IFELSE): Redirect stdout out of the
authorAkim Demaille <akim@epita.fr>
Mon, 19 Mar 2001 13:32:34 +0000 (13:32 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 19 Mar 2001 13:32:34 +0000 (13:32 +0000)
_AC_EVAL_STDERR invocation to avoid `illegal io' on Ultrix.
Reported by Harlan Stenn, and fixed by Jim Meyering.

ChangeLog
acgeneral.m4
lib/autoconf/general.m4

index a614bdefdcc2cc46c8ee40d42b81ad7f20dd52de..02d184412a3c1ab4a2947365daabd4e16d5f104f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-03-19  Akim Demaille  <akim@epita.fr>
+
+       * acgeneral.m4 (_AC_PREPROC_IFELSE): Redirect stdout out of the
+       _AC_EVAL_STDERR invocation to avoid `illegal io' on Ultrix.
+       Reported by Harlan Stenn, and fixed by Jim Meyering.
+
 2001-03-19  Akim Demaille  <akim@epita.fr>
 
        * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Don't hard code
index 70680c18abe02636330b41f0f9bcbf04b3b288c7..de8738c33dbfd323e732aca11961500656fbb517 100644 (file)
@@ -2712,7 +2712,7 @@ m4_popdef([AC_Lib_Name])dnl
 # This macro can be used during the selection of a preprocessor.
 AC_DEFUN([_AC_PREPROC_IFELSE],
 [m4_ifvaln([$1], [AC_LANG_CONFTEST([$1])])dnl
-if _AC_EVAL_STDERR([$ac_cpp conftest.$ac_ext >/dev/null]); then
+if _AC_EVAL_STDERR([$ac_cpp conftest.$ac_ext]) >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_[]_AC_LANG_ABBREV[]_preproc_warn_flag
   else
index 70680c18abe02636330b41f0f9bcbf04b3b288c7..de8738c33dbfd323e732aca11961500656fbb517 100644 (file)
@@ -2712,7 +2712,7 @@ m4_popdef([AC_Lib_Name])dnl
 # This macro can be used during the selection of a preprocessor.
 AC_DEFUN([_AC_PREPROC_IFELSE],
 [m4_ifvaln([$1], [AC_LANG_CONFTEST([$1])])dnl
-if _AC_EVAL_STDERR([$ac_cpp conftest.$ac_ext >/dev/null]); then
+if _AC_EVAL_STDERR([$ac_cpp conftest.$ac_ext]) >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_[]_AC_LANG_ABBREV[]_preproc_warn_flag
   else