From 6710f44aa9fbb45bf182face34813df726e8efd9 Mon Sep 17 00:00:00 2001 From: Dakota Benjamin Date: Mon, 22 Feb 2016 13:53:27 -0500 Subject: [PATCH] Fix OpenSfM libboost dependencies libboost-python-dev-all depended on libboost-1.54, but we are installing 1.55. Also, the commented code was causing it to fail. --- configure.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.sh b/configure.sh index 641bf744..4e8fe8e8 100644 --- a/configure.sh +++ b/configure.sh @@ -71,8 +71,8 @@ sudo apt-get install python-networkx \ libboost-iostreams1.55-dev \ libboost-regex1.55-dev \ libboost-python1.55-dev \ - #libboost1.55-all-dev \ - libboost-python-dev -y + libboost-date-time1.55-dev \ + libboost-thread1.55-dev -y sudo pip install -U PyYAML \ exifread \ @@ -119,4 +119,4 @@ cd SuperBuild mkdir -p build && cd build cmake .. && make -j ${NUM_CORES} -echo -e "\e[1;34mScript finished\e[0;39m" \ No newline at end of file +echo -e "\e[1;34mScript finished\e[0;39m"