Ignore the errors from the clean workaround patch in Windows

parent 95496215
......@@ -134,7 +134,8 @@ class ToolMakefile(object):
tmp = "\t\t" + path_mod.del_command() + " $(CLEAN_TARGETS)"
self.writeln(tmp)
if path_mod.check_windows():
tmp = "\t\t" + path_mod.rmdir_command() + " $(CLEAN_TARGETS)"
tmp = "\t\t@-" + path_mod.rmdir_command() + \
" $(CLEAN_TARGETS) >nul 2>&1"
self.writeln(tmp)
def makefile_mrproper(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment