summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-04-18 03:20:21 +0900
committerDan Moseley <danmose@microsoft.com>2017-04-17 11:20:21 -0700
commitbd9cd4206ef5abb9b0a4741fc7d970b40bfed44b (patch)
tree00eda5174149cb90c89a6f08ba397e7840f51989
parent8a4eef782cb1f297d499c08896bbbd2c5ceb3099 (diff)
downloadcoreclr-bd9cd4206ef5abb9b0a4741fc7d970b40bfed44b.tar.gz
coreclr-bd9cd4206ef5abb9b0a4741fc7d970b40bfed44b.tar.bz2
coreclr-bd9cd4206ef5abb9b0a4741fc7d970b40bfed44b.zip
Allow build.sh to have multiple cmakeargs options (#10962)
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index ae5e43672d..f5cab1eeef 100755
--- a/build.sh
+++ b/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"