From: Jonghyun Park Date: Mon, 17 Apr 2017 18:20:21 +0000 (+0900) Subject: Allow build.sh to have multiple cmakeargs options (dotnet/coreclr#10962) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7239 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d74f0f26f22afcb16fa1901ff7402219ef6613d3;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Allow build.sh to have multiple cmakeargs options (dotnet/coreclr#10962) Commit migrated from https://github.com/dotnet/coreclr/commit/bd9cd4206ef5abb9b0a4741fc7d970b40bfed44b --- diff --git a/src/coreclr/build.sh b/src/coreclr/build.sh index ae5e436..f5cab1e 100755 --- a/src/coreclr/build.sh +++ b/src/coreclr/build.sh @@ -732,7 +732,7 @@ while :; do cmakeargs) if [ -n "$2" ]; then - __cmakeargs="$2" + __cmakeargs="$__cmakeargs $2" shift else echo "ERROR: 'cmakeargs' requires a non-empty option argument"