diff options
author | Jonghyun Park <parjong@gmail.com> | 2017-04-18 03:20:21 +0900 |
---|---|---|
committer | Dan Moseley <danmose@microsoft.com> | 2017-04-17 11:20:21 -0700 |
commit | bd9cd4206ef5abb9b0a4741fc7d970b40bfed44b (patch) | |
tree | 00eda5174149cb90c89a6f08ba397e7840f51989 /build.sh | |
parent | 8a4eef782cb1f297d499c08896bbbd2c5ceb3099 (diff) | |
download | coreclr-bd9cd4206ef5abb9b0a4741fc7d970b40bfed44b.tar.gz coreclr-bd9cd4206ef5abb9b0a4741fc7d970b40bfed44b.tar.bz2 coreclr-bd9cd4206ef5abb9b0a4741fc7d970b40bfed44b.zip |
Allow build.sh to have multiple cmakeargs options (#10962)
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |