From f6543e7d55321ee8999f9f9240a5d43ff38f0c80 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Fri, 22 Jan 2010 11:39:12 +0000 Subject: [PATCH] "&>" is not POSIX. Use "2>&1 >" instead. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35236 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- build/scripts/build_haiku_image | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/build_haiku_image b/build/scripts/build_haiku_image index 82e38d9c80..95efcabf61 100755 --- a/build/scripts/build_haiku_image +++ b/build/scripts/build_haiku_image @@ -34,7 +34,7 @@ fi # If the haiku image path is a symlink resolve it now (makebootable needs the # path of the actual device path under Linux). -if readlink -f "$imagePath" &> /dev/null; then +if readlink -f "$imagePath" 2>&1 > /dev/null; then normalizedImagePath=$(readlink -f "$imagePath") if [ "$normalizedImagePath" ]; then imagePath="$normalizedImagePath"