From 3cfc2736aabe995f21e7ef6f6b71caa3a9091f50 Mon Sep 17 00:00:00 2001 From: Sonja Happ Date: Mon, 16 Sep 2019 16:08:01 +0200 Subject: [PATCH] reduce version of FMT lib to 5.2.0 instead of 6.0.0 for compatibility with spdlog library --- packaging/docker/Dockerfile.dev-ubuntu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/docker/Dockerfile.dev-ubuntu b/packaging/docker/Dockerfile.dev-ubuntu index f42acf526..8e998d414 100644 --- a/packaging/docker/Dockerfile.dev-ubuntu +++ b/packaging/docker/Dockerfile.dev-ubuntu @@ -84,7 +84,7 @@ RUN apt-get update && apt-get install -y \ RUN cd /tmp && \ git clone --recursive https://github.com/fmtlib/fmt.git && \ mkdir -p fmt/build && cd fmt/build && \ - git checkout 6.0.0 && \ + git checkout 5.2.0 && \ cmake -DBUILD_SHARED_LIBS=1 .. && make -j$(nproc) install && \ rm -rf /tmp/*