From: Andre Noll Date: Tue, 29 Mar 2011 14:17:51 +0000 (+0200) Subject: autogen.sh: Get rid of a bashism. X-Git-Tag: v0.4.6~2^2 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=b81af23580d71f1daa219aab6455be73e8a30c54;ds=sidebyside autogen.sh: Get rid of a bashism. This avoids some rather bizarre error messages if /bin/sh is dash. --- 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