Skip to content

Commit

Permalink
fix export variable
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanLiviuVarzaru committed Sep 12, 2024
1 parent 9e4a107 commit d57e60e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ci_build_images/msan.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ ENV CFLAGS="-fno-omit-frame-pointer -O2 -g -fsanitize=memory"
ENV CXXFLAGS="$CFLAGS"
ENV LDFLAGS="-fsanitize=memory"

RUN apt-get source gnutls28 \
RUN . /etc/os-release \
&& apt-get source gnutls28 \
&& mv gnutls28-*/* . \
&& mk-build-deps -it 'apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes' \
&& aclocal \
Expand Down Expand Up @@ -109,7 +110,8 @@ RUN apt-get source gnutls28 \
ENV CFLAGS="$CFLAGS -Wno-conversion"
ENV CXXFLAGS="$CFLAGS"

RUN apt-get source cracklib2 \
RUN . /etc/os-release \
&& apt-get source cracklib2 \
&& mv cracklib2-*/* . \
&& mk-build-deps -it 'apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes' \
&& if [ "${VERSION_CODENAME}" = "bookworm" ]; then \
Expand Down

0 comments on commit d57e60e

Please sign in to comment.