Skip to content

Commit

Permalink
fix wrong autoconf
Browse files Browse the repository at this point in the history
  • Loading branch information
rem1776 authored and rem1776 committed Jun 28, 2023
1 parent 51a735d commit 2e34751
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Dockerfile.gnu
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN spack install gcc@${gcc_version} && \
spack -e . concretize -f > /opt/deps/deps.log && \
spack install --fail-fast

RUN find -L /opt/view/* -type f -exec readlink -f '{}' \; | \
RUN find -L /opt/deps/* -type f -exec readlink -f '{}' \; | \
xargs file -i | \
grep 'charset=binary' | \
grep 'x-executable\|x-arcive\|x-sharedlib' | \
Expand All @@ -63,9 +63,9 @@ COPY ./fms_test_input /home/fms_test_input
SHELL ["/bin/bash", "-O", "extglob", "-c"]

RUN ln -s /opt/deps/linux-centos8-haswell/gcc-12.2.0/*/lib/!(pkgconfig|cmake) /usr/local/lib && \
ln -s /opt/deps/linux-centos8-haswell/gcc-12.2.0/*/bin/* /usr/local/bin && \
ln -s /opt/deps/linux-centos8-haswell/gcc-12.2.0/*/bin/!(autoreconf|pkgconfig|cmake) /usr/local/bin && \
ln -s /opt/deps/linux-centos8-haswell/gcc-12.2.0/*/include/* /usr/local/include && \
dnf install -y autoconf automake make cmake binutils glibc-devel m4 libtool pkg-config
dnf install -y autoconf automake make binutils m4 libtool pkg-config libtool

ENV FC="mpifort"
ENV CC="mpicc"
Expand Down

0 comments on commit 2e34751

Please sign in to comment.