Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions func_collection.sh
Original file line number Diff line number Diff line change
Expand Up @@ -393,16 +393,16 @@ function fetch_yaml_cpp() {
pushd . > /dev/null 2>&1
mkdir -p ${MARS_DEV_ROOT}/external
cd ${MARS_DEV_ROOT}/external
if [ ! -e "yaml-cpp-0.3.0.tar.gz" ]; then
wget http://yaml-cpp.googlecode.com/files/yaml-cpp-0.3.0.tar.gz
if [ ! -e "release-0.3.0.tar.gz" ]; then
wget https://github.com/jbeder/yaml-cpp/archive/release-0.3.0.tar.gz
if [ -d "yaml-cpp" ]; then
uninstall_package "external/yaml-cpp"
rm -rf yaml-cpp
fi
fi
if [ ! -d "yaml-cpp" ]; then
tar -xzvf yaml-cpp-0.3.0.tar.gz
#mv yaml-cpp-0.3.0 yaml-cpp
tar -xzvf release-0.3.0.tar.gz
mv yaml-cpp-release-0.3.0 yaml-cpp
fi
cd ..
popd > /dev/null 2>&1
Expand Down
4 changes: 2 additions & 2 deletions patches/base-types.patch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--- base-types/base/Time.hpp
+++ base-types/base/Time.hpp
--- base-types/src/Time.hpp
+++ base-types/src/Time.hpp
@@ -12,6 +12,10 @@
#include <stdexcept>
#include <assert.h>
Expand Down