Replace the $(...) syntax with backticks instead.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41721 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2011-05-24 21:14:41 +00:00
parent 4d2ca803f6
commit 901c33fcd0
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ haikuOutputDir=$4
shift 4
additionalMakeArgs=$*
case $(uname) in
case `uname` in
FreeBSD|OpenBSD)
MAKE=gmake
;;

View File

@ -71,7 +71,7 @@ determineHaikuRevision()
haikuTop=$1
haikuBuildOutputDir=$2
case $(uname) in
case `uname` in
Darwin)
SED=gsed
;;