Skip to content
Snippets Groups Projects
Commit 83f65b41 authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

Fixing genfit install "feature" to not install into /usr/local

but do an in source install. WTF

Using a fixed local clone at eicweb.phy.anl.gov/eic_tools/GenFit
parent 28ef11a0
Branches
Tags
No related merge requests found
......@@ -4,7 +4,7 @@
## PROJECT: hallac_container
################################################################################
cmake_minimum_required (VERSION 3.8)
project (eic_container VERSION 0.9.11)
project (eic_container VERSION 0.9.12)
################################################################################
## The name of our container
......
......@@ -46,11 +46,11 @@ RUN cd /tmp \
&& make -j30 && make -j4 install \
&& cd /tmp && rm -rf /tmp/podio
RUN mkdir /usr/local/src && cd /usr/local/src \
&& git clone https://github.com/GenFit/GenFit.git \
RUN cd /tmp \
&& git clone https://eicweb.phy.anl.gov/eic_tools/GenFit.git \
&& mkdir -p /tmp/GenFit/build \
&& cd /tmp/GenFit/build \
&& cmake /usr/local/src/GenFit/. -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_CXX_STANDARD=17 \
&& cmake ../. -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_CXX_STANDARD=17 \
&& make -j4 \
&& make -j4 install \
&& cd /tmp && rm -rf /tmp/GenFit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment