Replaced '&> /dev/null' with '> /dev/null 2>&1'.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36362 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matt Madia
2010-04-20 02:18:54 +00:00
parent ff3c7b9645
commit 7fe2e06cfd
Vendored
+1 -1
View File
@@ -252,7 +252,7 @@ get_build_tool_path()
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
}