autogen.sh: Get rid of a bashism.
[paraslash.git] / autogen.sh
index 5c3d931d8a4e43c99e46d9b20031d7ee30fe6ccc..a047f7c4d9f0bc704ade2ed049118c0eb3e02f7f 100755 (executable)
@@ -3,10 +3,11 @@ echo preparing...
 if test -f Makefile; then
        make maintainer-clean > /dev/null
 fi
 if test -f Makefile; then
        make maintainer-clean > /dev/null
 fi
-aclocal -I . &> /dev/null
+aclocal -I . > /dev/null 2>&1
 autoconf
 autoconf
-autoheader 
+autoheader
 echo configuring...
 ./configure $@ > /dev/null
 echo compiling...
 echo configuring...
 ./configure $@ > /dev/null
 echo compiling...
-make clean all > /dev/null
+make clean2 > /dev/null 2>&1
+make > /dev/null