Skip to content

Commit

Permalink
don't create debug packages
Browse files Browse the repository at this point in the history
  • Loading branch information
BoukeHaarsma23 committed Feb 11, 2024
1 parent 1f01d05 commit dcba175
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ RUN echo -e "#!/bin/bash\nif [[ \"$1\" == \"--version\" ]]; then echo 'fake 244
chmod +x /usr/bin/systemd-run

# substitute check with !check to avoid running software from AUR in the build machine
RUN sed -i -e 's/BUILDENV=(!distcc color !ccache check !sign)/BUILDENV=(!distcc color !ccache !check !sign)/g' /etc/makepkg.conf
# also remove creation of debug packages.
RUN sed -i '/BUILDENV/s/check/!check/g' /etc/makepkg.conf && \
sed -i '/OPTIONS/s/debug/!debug/g' /etc/makepkg.conf

COPY manifest /manifest
# Freeze packages and overwrite with overrides when needed
Expand Down

0 comments on commit dcba175

Please sign in to comment.