From 0de375d021697abde3502ee5964516c3418fee84 Mon Sep 17 00:00:00 2001 From: Whitney Armstrong <warmstrong@anl.gov> Date: Tue, 26 May 2020 23:14:48 -0500 Subject: [PATCH] Fixed hepmc3 build --- CMakeLists.txt | 2 +- containers/docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fe2983f09..5ad81b624 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ ## PROJECT: hallac_container ################################################################################ cmake_minimum_required (VERSION 3.8) -project (eic_container VERSION 1.2.0) +project (eic_container VERSION 1.2.1) ################################################################################ ## The name of our container diff --git a/containers/docker/Dockerfile b/containers/docker/Dockerfile index 5e468ef16..fc657f7fc 100644 --- a/containers/docker/Dockerfile +++ b/containers/docker/Dockerfile @@ -20,7 +20,7 @@ RUN cd /tmp \ RUN cd /tmp \ && git clone https://gitlab.cern.ch/hepmc/HepMC3.git \ && mkdir HepMC3/build && cd HepMC3/build \ - && cmake ../. -DHEPMC3_ENABLE_ROOTIO=ON -DCMAKE_INSTALL_PREFIX=$HOME/stow/hepmc3 -DHEPMC3_BUILD_EXAMPLES=ON \ + && cmake ../. -DHEPMC3_ENABLE_ROOTIO=ON -DCMAKE_INSTALL_PREFIX=/usr/local -DHEPMC3_BUILD_EXAMPLES=ON \ && make -j20 \ && make install \ && cd /tmp && rm -rf /tmp/HepMC3 -- GitLab