From b81af23580d71f1daa219aab6455be73e8a30c54 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Tue, 29 Mar 2011 16:17:51 +0200 Subject: [PATCH] autogen.sh: Get rid of a bashism. This avoids some rather bizarre error messages if /bin/sh is dash. --- autogen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 76eaef2f..a047f7c4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -3,11 +3,11 @@ echo preparing... if test -f Makefile; then make maintainer-clean > /dev/null fi -aclocal -I . &> /dev/null +aclocal -I . > /dev/null 2>&1 autoconf autoheader echo configuring... ./configure $@ > /dev/null echo compiling... -make clean2 &> /dev/null +make clean2 > /dev/null 2>&1 make > /dev/null -- 2.39.2