[haiku-commits] r36362 - haiku/trunk

  • From: mattmadia@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 20 Apr 2010 04:18:54 +0200 (CEST)

Author: mmadia
Date: 2010-04-20 04:18:54 +0200 (Tue, 20 Apr 2010)
New Revision: 36362
Changeset: http://dev.haiku-os.org/changeset/36362/haiku

Modified:
   haiku/trunk/configure
Log:
Replaced '&> /dev/null' with '> /dev/null 2>&1'.


Modified: haiku/trunk/configure
===================================================================
--- haiku/trunk/configure       2010-04-19 23:41:59 UTC (rev 36361)
+++ haiku/trunk/configure       2010-04-20 02:18:54 UTC (rev 36362)
@@ -252,7 +252,7 @@
                path="`pwd`/`basename "$path"`"
                cd $oldPwd
        else
-               which "$path" &> /dev/null || {
+               which "$path" > /dev/null 2>&1 || {
                        echo "Build tool \"$path\" not found." >&2
                        exit 1
                }


Other related posts:

  • » [haiku-commits] r36362 - haiku/trunk - mattmadia