From d74f0f26f22afcb16fa1901ff7402219ef6613d3 Mon Sep 17 00:00:00 2001 From: Jonghyun Park Date: Tue, 18 Apr 2017 03:20:21 +0900 Subject: [PATCH] Allow build.sh to have multiple cmakeargs options (dotnet/coreclr#10962) Commit migrated from https://github.com/dotnet/coreclr/commit/bd9cd4206ef5abb9b0a4741fc7d970b40bfed44b --- src/coreclr/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.7.4