We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9410f95 commit 4c32e6aCopy full SHA for 4c32e6a
ci_build.sh
@@ -2774,7 +2774,19 @@ bindings)
2774
# Help developers debug:
2775
# Let initial clean-up be at default verbosity
2776
echo "=== Starting initial clean-up (from old build products)"
2777
+
2778
+ rm -f config.cache.tmp || true
2779
+ if [ x"${DO_CLEAN_AUTOCONF_CACHE}" = xno ] && [ -s config.cache ]; then
2780
+ echo "=== Keeping old config.cache as asked by BUILD_TYPE default or caller request"
2781
+ cp -f config.cache config.cache.tmp
2782
+ fi
2783
2784
${MAKE} realclean -k || true
2785
2786
+ if [ x"${DO_CLEAN_AUTOCONF_CACHE}" = xno ] && [ -s config.cache.tmp ]; then
2787
+ mv -f config.cache.tmp config.cache || true
2788
2789
2790
echo "=== Finished initial clean-up"
2791
fi
2792
0 commit comments