Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Lucia <rylucia@microsoft.com>2019-06-26 06:58:41 +0300
committerGitHub <noreply@github.com>2019-06-26 06:58:41 +0300
commita2a28b94c1316db37a254256907765eecf8de789 (patch)
treedd25a7b45e50d2e16fbff3c4c3fa14842d570277 /netcore/build.sh
parent73dd9ac01e95a119721ade185bfd6eb1f3b8eac2 (diff)
[netcore] Fix build.sh (#15380)
* [netcore] Revert changes to build.sh It appears to have accidentally been changed in #15215, and the script no longer works correctly as a result, so revert * Strip call to make
Diffstat (limited to 'netcore/build.sh')
-rwxr-xr-xnetcore/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/netcore/build.sh b/netcore/build.sh
index 03ad6e3f469..b9307479485 100755
--- a/netcore/build.sh
+++ b/netcore/build.sh
@@ -87,7 +87,7 @@ 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
- cd .. && ./autogen.sh --with-core=only
+ (cd .. && ./autogen.sh --with-core=only)
touch .configured
fi