+.config/yt-dlp.conf
[nethome.git] / bin / ccache-build
1 #! /bin/bash
2 # openjdk: export PATH="$(echo "$PATH"|sed 's#:/usr/lib64/ccache:#:'$HOME'/ccache:#')";bash configure --disable-precompiled-headers --disable-ccache
3 set -ex
4 rm -rf ~/ccache
5 mkdir ~/ccache
6 cd ~/ccache
7 for i in /usr/lib64/ccache/*;do
8   j=`basename $i`
9   echo -e '#! /bin/bash\nexport PATH="$(echo "$PATH"|sed s#:$HOME/ccache:#:#)"\nexec '$i' "$@"' >$j
10   chmod +x $j
11 done
12 echo done