From 5ef33ed22a93e38f0caf3947e42f57142b222bd9 Mon Sep 17 00:00:00 2001 From: Will Estes Date: Tue, 3 Sep 2002 13:08:13 +0000 Subject: [PATCH] when we don't have GNU indent, the test will generate output on stderr, so we send that to /dev/null --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index ada150d..ece4a50 100644 --- a/configure.in +++ b/configure.in @@ -46,7 +46,7 @@ AC_PATH_PROG(M4, m4, $srcdir/missing) AC_PATH_PROG(INDENT, indent, $srcdir/missing) if test "$INDENT" != $srcdir/missing ; then AC_MSG_CHECKING(if $INDENT is GNU indent) - if $INDENT --version | head -1|grep "GNU indent" > /dev/null ; then + if $INDENT --version 2>/dev/null | head -1|grep "GNU indent" > /dev/null ; then AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) -- 2.40.0