From 20845f4a6741e6c925dd386245ecfe5bee44b3fd Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Thu, 27 Dec 2018 19:31:44 -0800 Subject: SConstruct: Make "scons -c" clean scons config temp files. Issue #55294 Remove: .sconf_temp, .scons-option-cache, and config.log --- SConstruct | 2 ++ 1 file changed, 2 insertions(+) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index 38c1b689..c9a76957 100644 --- a/SConstruct +++ b/SConstruct @@ -2565,6 +2565,8 @@ env.Clean(clean_misc, glob.glob('*.[0-8]')) # Other misc items env.Clean(clean_misc, ['config.log', 'contrib/ppscheck', 'contrib/clock_test', 'TAGS']) +# Clean scons state files +env.Clean(clean_misc, ['.sconf_temp', '.scons-option-cache', 'config.log']) # Nuke scons state files sconsclean = Utility("sconsclean", '', -- cgit v1.2.1