+.config/yt-dlp.conf
[nethome.git] / bin / openjdk-find-ccache-bug
1 #! /bin/bash
2 # 0 * * * * ~/bin/openjdk-find-ccache-bug
3 for i in $(find ~ 2>/dev/null -name config.status);do
4   if grep -qw REWRITE_PATHS_RELATIVE $(echo $i|sed 's#/build/[^/]*/configure-support/config.status$##')/make/common/NativeCompilation.gmk 2>/dev/null;then
5     continue
6   fi
7   grep CCACHE_BASEDIR= $i /dev/null
8 done