summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjacobkeeler <jacob.keeler@livioradio.com>2017-08-08 13:57:37 -0400
committerjacobkeeler <jacob.keeler@livioradio.com>2017-08-08 13:57:37 -0400
commit5e7cc8fba2faabc9d4e00a4f6d5d965f5f4c063d (patch)
tree3a7066c2c120f06f389ceae68229e6dc4d4ccb2f
parent83c9502e5ccb3e78ff40b9ef2f110ced17e914cd (diff)
downloadsdl_core-fix/double_configure_bson_library.tar.gz
Fix double configure stepfix/double_configure_bson_library
Currently when the BSON library is built, the configuration step is performed during both the `configure` and `make` commands. This commit fixes this.
-rw-r--r--src/3rd_party/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rd_party/CMakeLists.txt b/src/3rd_party/CMakeLists.txt
index 2abbe4f284..f9abfb55ce 100644
--- a/src/3rd_party/CMakeLists.txt
+++ b/src/3rd_party/CMakeLists.txt
@@ -296,7 +296,7 @@ ExternalProject_Add(libbson
BINARY_DIR ${BSON_LIB_SOURCE_DIRECTORY}
DOWNLOAD_DIR ${BSON_LIB_SOURCE_DIRECTORY}
SOURCE_DIR ${BSON_LIB_SOURCE_DIRECTORY}
- CONFIGURE_COMMAND touch aclocal.m4 configure.ac Makefile.am Makefile.in && ./configure
+ CONFIGURE_COMMAND touch aclocal.m4 configure.ac Makefile.am Makefile.in configure && ./configure
BUILD_COMMAND make
INSTALL_COMMAND sudo make install)