From: Jan Kratochvil Date: Fri, 20 Oct 2023 23:55:24 +0000 (+0800) Subject: +bin/openjdk-find-ccache-bug X-Git-Url: https://git.jankratochvil.net/?p=nethome.git;a=commitdiff_plain;h=7fd91a885220467737cfe0cfed50d2d6401d1bee +bin/openjdk-find-ccache-bug --- diff --git a/bin/openjdk-find-ccache-bug b/bin/openjdk-find-ccache-bug new file mode 100755 index 0000000..2c62ff3 --- /dev/null +++ b/bin/openjdk-find-ccache-bug @@ -0,0 +1,8 @@ +#! /bin/bash +# 0 * * * * ~/bin/openjdk-find-ccache-bug +for i in $(find ~ 2>/dev/null -name config.status);do + if grep -qw REWRITE_PATHS_RELATIVE $(echo $i|sed 's#/build/[^/]*/configure-support/config.status$##')/make/common/NativeCompilation.gmk 2>/dev/null;then + continue + fi + grep CCACHE_BASEDIR= $i /dev/null +done