Skip to content

Commit

Permalink
Fix symlinks for dev images
Browse files Browse the repository at this point in the history
  • Loading branch information
silkeh committed Oct 25, 2023
1 parent 267d05f commit 69e7b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN echo "deb {repo_url} {repo_distribution} {repo_component}" \
https://apt.llvm.org/llvm-snapshot.gpg.key && \
apt-get -qq update && \
apt-get install -qqy -t {repo_distribution} {packages} && \
for f in /usr/lib/llvm-{version}/bin/*; do ln -sf "$f" /usr/bin; done && \
for f in /usr/lib/llvm-*/bin/*; do ln -sf "$f" /usr/bin; done && \
ln -sf clang /usr/bin/cc && \
ln -sf clang /usr/bin/c89 && \
ln -sf clang /usr/bin/c99 && \
Expand Down

0 comments on commit 69e7b05

Please sign in to comment.