From 4212270b231bcc158f75fd19a4503eac979032ec Mon Sep 17 00:00:00 2001 From: Egor Bogatov Date: Fri, 14 Jun 2019 13:15:02 +0300 Subject: [PATCH] Fix csproj --- netcore/System.Private.CoreLib/System.Private.CoreLib.csproj | 4 ++-- netcore/build.sh | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/netcore/System.Private.CoreLib/System.Private.CoreLib.csproj b/netcore/System.Private.CoreLib/System.Private.CoreLib.csproj index b734525356d..e7cf77c1247 100644 --- a/netcore/System.Private.CoreLib/System.Private.CoreLib.csproj +++ b/netcore/System.Private.CoreLib/System.Private.CoreLib.csproj @@ -28,8 +28,8 @@ - $(BuildType) - $(BuildArch) + $(BuildType) + $(BuildArch) arm {DD18B4BA-3B49-437B-9E34-41EF8A640CE0} diff --git a/netcore/build.sh b/netcore/build.sh index 29071f81d63..712c305d2b2 100755 --- a/netcore/build.sh +++ b/netcore/build.sh @@ -83,6 +83,7 @@ while [[ $# > 0 ]]; do shift done +CPU_COUNT=$(getconf _NPROCESSORS_ONLN || echo 4) # run .././autogen.sh only once or if "--rebuild" argument is provided if [[ "$force_rebuild" == "true" || ! -f .configured ]]; then @@ -92,8 +93,6 @@ if [[ "$force_rebuild" == "true" || ! -f .configured ]]; then touch .configured fi -CPU_COUNT=$(getconf _NPROCESSORS_ONLN || echo 4) - # build mono runtime if [ "$skipnative" = "false" ]; then make runtime -j$CPU_COUNT -- 2.11.4.GIT