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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2019-06-11 17:52:26 +0300
committerVladiMihaylenko <vxmihaylenko@gmail.com>2019-06-11 17:52:26 +0300
commit915fe0fcf6c8fde4d4b6f82d4b8e28bddc5546bb (patch)
tree7a898b555c4705dabcc355bf91f3785c9307f7e6 /configure.sh
parent191cc0b0f9336d8c4537e289cad055ea76f07401 (diff)
Fixed open source build.
Diffstat (limited to 'configure.sh')
-rwxr-xr-xconfigure.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/configure.sh b/configure.sh
index a8697b3515..dff400833e 100755
--- a/configure.sh
+++ b/configure.sh
@@ -19,6 +19,12 @@ PRIVATE_NETWORK_CONFIG="$BASE_PATH/android/res/xml/network_security_config.xml"
SAVED_PRIVATE_REPO_FILE="$BASE_PATH/.private_repository_url"
TMP_REPO_DIR="$BASE_PATH/.tmp.private.repo"
+# TODO: Remove these lines when XCode project is finally generated by CMake.
+cd $BASE_PATH/3party/boost/
+./bootstrap.sh
+./b2 headers
+cd $BASE_PATH
+
if [ -f "$SAVED_PRIVATE_REPO_FILE" ]; then
PRIVATE_REPO=`cat "$SAVED_PRIVATE_REPO_FILE"`
echo "Using stored private repository URL: $PRIVATE_REPO"
@@ -65,8 +71,3 @@ if git clone --depth 1 "$PRIVATE_REPO" "$TMP_REPO_DIR"; then
echo "Private files have been updated."
fi
-# TODO: Remove these lines when XCode project is finally generated by CMake.
-cd $BASE_PATH/3party/boost/
-./bootstrap.sh
-./b2 headers
-cd $BASE_PATH