diskimage-builder/elements/opensuse/install.d/01-ccache-symlinks

10 lines
199 B
Plaintext
Raw Normal View History

#!/bin/bash
set -e
# Setup ccache symlinks, as openSUSE's ccache package doesn't
# include them.
mkdir -p /usr/lib/ccache
for tool in cc gcc; do
ln -s /usr/bin/ccache /usr/lib/ccache/$tool
done