Merge "Setup ccache symlinks on openSUSE"

This commit is contained in:
Jenkins 2014-01-22 21:03:15 +00:00 committed by Gerrit Code Review
commit e882bb5836

View File

@ -0,0 +1,9 @@
#!/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