Fix output redirect
authordpage <dpage@a7884b65-44f6-0310-8a51-81a127f17b15>
Thu, 10 Apr 2008 20:56:58 +0000 (20:56 +0000)
committerdpage <dpage@a7884b65-44f6-0310-8a51-81a127f17b15>
Thu, 10 Apr 2008 20:56:58 +0000 (20:56 +0000)
git-svn-id: svn://svn.pgadmin.org/trunk/pgadmin3@7225 a7884b65-44f6-0310-8a51-81a127f17b15

bootstrap

index 83792f0032edf918ee65e1119b8e62c4bea37f69..1a0ea718b4111defe2552499339c8fb77ad47b05 100644 (file)
--- a/bootstrap
+++ b/bootstrap
 
 # Check for aclocal 1.9/1.10
 echo "Checking aclocal..."
-RET=`type aclocal-1.10 2&>1 /dev/null || echo fail`
+RET=`type aclocal-1.10 > /dev/null 2>&1 || echo fail`
 if [ ! $RET ];
 then
   ACLOCAL=aclocal-1.10
 else
-  RET=`type aclocal-1.9 2&>1 /dev/null || echo fail` 
+  RET=`type aclocal-1.9 > /dev/null 2>&1 || echo fail` 
   if [ ! $RET ];
   then
     ACLOCAL=aclocal-1.9
@@ -27,12 +27,12 @@ fi
 
 # Check for automake 1.9/1.10
 echo "Checking automake..."
-RET=`type automake-1.10 2&>1 /dev/null || echo fail`
+RET=`type automake-1.10 > /dev/null 2>&1 || echo fail`
 if [ ! $RET ];
 then
   AUTOMAKE=automake-1.10
 else
-  RET=`type automake-1.9 2&>1 /dev/null || echo fail`
+  RET=`type automake-1.9 > /dev/null 2>&1 || echo fail`
   if [ ! $RET ];
   then
     AUTOMAKE=automake-1.9