From 7be4cc352687914ab88ee465463ee4eb6772ee99 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Thu, 9 Aug 2018 06:36:11 +0900 Subject: [PATCH] Fix up clang-tidy after bug 1480631. r=bustage --- build/build-clang/build-clang.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build-clang/build-clang.py b/build/build-clang/build-clang.py index b7968c7888e3..57b9c40a26e3 100755 --- a/build/build-clang/build-clang.py +++ b/build/build-clang/build-clang.py @@ -297,7 +297,7 @@ def get_tool(config, key): # run-clang-tidy.py def prune_final_dir_for_clang_tidy(final_dir): # Make sure we only have what we expect. - dirs = ("bin", "include", "lib", "libexec", "msbuild-bin", "share", "tools") + dirs = ("bin", "include", "lib", "lib32", "libexec", "msbuild-bin", "share", "tools") for f in glob.glob("%s/*" % final_dir): if os.path.basename(f) not in dirs: raise Exception("Found unknown file %s in the final directory" % f)