Skip to content

Commit

Permalink
Merge pull request #952 from hyperledger/hotfix/spdlog-version-update
Browse files Browse the repository at this point in the history
update spdlog commit version for alpine
  • Loading branch information
satellitex committed Feb 8, 2018
2 parents 4edb767 + b32961d commit 83bc4fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmake/Modules/Findspdlog.cmake
Expand Up @@ -9,7 +9,7 @@ find_package_handle_standard_args(spdlog DEFAULT_MSG


set(URL https://github.com/gabime/spdlog.git)
set(VERSION f85a08622e20b74bff34381cafcb8ef8167b29d0)
set(VERSION ccd675a286f457068ee8c823f8207f13c2325b26)
set_target_description(spdlog "Logging library" ${URL} ${VERSION})


Expand Down
4 changes: 2 additions & 2 deletions docker/develop/Dockerfile
Expand Up @@ -90,9 +90,9 @@ RUN git clone https://github.com/google/googletest /tmp/googletest; \
cmake --build /tmp/googletest/build --target install -- -j${PARALLELISM}; \
rm -rf /tmp/googletest

# install spdlog
# install spdlog v0.16.3
RUN git clone https://github.com/gabime/spdlog /tmp/spdlog; \
(cd /tmp/spdlog ; git checkout f85a08622e20b74bff34381cafcb8ef8167b29d0); \
(cd /tmp/spdlog ; git checkout ccd675a286f457068ee8c823f8207f13c2325b26); \
cmake -DSPDLOG_BUILD_TESTING=OFF -H/tmp/spdlog -B/tmp/spdlog/build; \
cmake --build /tmp/spdlog/build --target install; \
rm -rf /tmp/spdlog
Expand Down

0 comments on commit 83bc4fe

Please sign in to comment.