Skip to content

Commit

Permalink
Typo messed up the prefix location
Browse files Browse the repository at this point in the history
  • Loading branch information
EinarElen committed Jan 26, 2024
1 parent 54300c2 commit faf9988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -480,11 +480,10 @@ SHELL ["/bin/bash", "-c"]
RUN mkdir src && \
git clone https://gitlab.com/Pythia8/releases/ --single-branch --branch pythia8310 pythia8 && \
cd pythia8 && ./configure --cxx-common="-O3 -g -std=c++17 -fPIC" --prefix ${__prefix} && \
cd pythia8 && ./configure --cxx-common="-O3 -g -std=c++17 -fPIC" --prefix=${__prefix} && \
make -j${NPROC} && \
make install && \
cd ../ && rm -rf src
# add any ssl certificates to the container to trust
COPY ./certs/ /usr/local/share/ca-certificates
RUN update-ca-certificates
Expand Down
2 changes: 1 addition & 1 deletion entry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set -e
if [ -z "${LDMX_SW_INSTALL}" ]; then
export LDMX_SW_INSTALL=$LDMX_BASE/ldmx-sw/install
fi
export LD_LIBRARY_PATH=$LDMX_SW_INSTALL/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$LDMX_SW_INSTALL/lib:$LD_LIBRARY_PATH:/usr/local/lib
export PYTHONPATH=$LDMX_SW_INSTALL/python:$LDMX_SW_INSTALL/lib:$PYTHONPATH
export PATH=$LDMX_SW_INSTALL/bin:$PATH

Expand Down

0 comments on commit faf9988

Please sign in to comment.