From: Masahiro Yamada Date: Mon, 25 Jul 2016 10:15:22 +0000 (+0900) Subject: tools: moveconfig: do not cleanup headers in include/generated X-Git-Tag: v2016.09-rc2~130 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=dc6de50bd6873deccea3c27f407bad8f987383e7;p=u-boot tools: moveconfig: do not cleanup headers in include/generated The files in include/generated are generated during build and removed by "make mrproper", so it has no point to touch them by this tool. Signed-off-by: Masahiro Yamada Reviewed-by: Tom Rini --- diff --git a/tools/moveconfig.py b/tools/moveconfig.py index d362923b22..fff44b229a 100755 --- a/tools/moveconfig.py +++ b/tools/moveconfig.py @@ -371,6 +371,8 @@ def cleanup_headers(configs, dry_run): for dir in 'include', 'arch', 'board': for (dirpath, dirnames, filenames) in os.walk(dir): + if dirpath == os.path.join('include', 'generated'): + continue for filename in filenames: if not fnmatch.fnmatch(filename, '*~'): cleanup_one_header(os.path.join(dirpath, filename),