You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2021/11/02 22:52:44 UTC

[geode-native] branch develop updated: GEODE-9741: Fixes Boost boostrap command. (#890)

This is an automated email from the ASF dual-hosted git repository.

jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 8db6a34  GEODE-9741: Fixes Boost boostrap command. (#890)
8db6a34 is described below

commit 8db6a3417f3a8b61270fc0f10e03a74ae1eff51b
Author: Jacob Barrett <ja...@vmware.com>
AuthorDate: Tue Nov 2 15:52:38 2021 -0700

    GEODE-9741: Fixes Boost boostrap command. (#890)
---
 dependencies/boost/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dependencies/boost/CMakeLists.txt b/dependencies/boost/CMakeLists.txt
index cd42a11..97dc3f2 100644
--- a/dependencies/boost/CMakeLists.txt
+++ b/dependencies/boost/CMakeLists.txt
@@ -18,7 +18,7 @@ project(boost VERSION 1.76.0 LANGUAGES NONE)
 set(SHA256 7bd7ddceec1a1dfdcbdb3e609b60d01739c38390a5f956385a12f3122049f0ca)
 
 if (WIN32)
-  set(BOOTSTRAP_COMMAND ./bootstrap.bat)
+  set(BOOTSTRAP_COMMAND bootstrap.bat)
 else()
   set(BOOTSTRAP_COMMAND ./bootstrap.sh)
 endif()