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
+1 -1
View File
@@ -16,7 +16,7 @@ haikuOutputDir=$4
shift 4 shift 4
additionalMakeArgs=$* additionalMakeArgs=$*
case $(uname) in case `uname` in
FreeBSD|OpenBSD) FreeBSD|OpenBSD)
MAKE=gmake MAKE=gmake
;; ;;
+1 -1
View File
@@ -71,7 +71,7 @@ determineHaikuRevision()
haikuTop=$1 haikuTop=$1
haikuBuildOutputDir=$2 haikuBuildOutputDir=$2
case $(uname) in case `uname` in
Darwin) Darwin)
SED=gsed SED=gsed
;; ;;