Modified: trunk/Tools/ChangeLog (269990 => 269991)
--- trunk/Tools/ChangeLog 2020-11-18 22:44:44 UTC (rev 269990)
+++ trunk/Tools/ChangeLog 2020-11-18 22:48:09 UTC (rev 269991)
@@ -1,3 +1,19 @@
+2020-11-18 Keith Rollin <[email protected]>
+
+ Extend check-for-inappropriate-files-in-framework to check for .tmp files
+ https://bugs.webkit.org/show_bug.cgi?id=219064
+ <rdar://problem/71519010>
+
+ Reviewed by Alexey Proskuryakov.
+
+ Some *.tmp files that were generated from post-processing header files
+ were appearing in *.framework/Headers directories. The problem doesn't
+ seem to be occurring any more, but update
+ check-for-inappropriate-files-in-framework to catch it if it does
+ again.
+
+ * Scripts/check-for-inappropriate-files-in-framework:
+
2020-11-18 Jonathan Bedard <[email protected]>
[webkitpy] Respect --result-report-flavor on device ports
Modified: trunk/Tools/Scripts/check-for-inappropriate-files-in-framework (269990 => 269991)
--- trunk/Tools/Scripts/check-for-inappropriate-files-in-framework 2020-11-18 22:44:44 UTC (rev 269990)
+++ trunk/Tools/Scripts/check-for-inappropriate-files-in-framework 2020-11-18 22:48:09 UTC (rev 269991)
@@ -28,10 +28,21 @@
is_shallow_bundle = (ENV['SHALLOW_BUNDLE'] || "NO").upcase == "YES"
$INAPPROPRIATE_FILES = {
- "_javascript_Core" => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
- "WebCore" => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
- "WebKitLegacy" => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
- "WebKit" => { "Resources" => ["*.txt", "*.in", "*.idl", "*.h"] },
+ "_javascript_Core" => {
+ "Headers" => ["*.tmp"],
+ "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
+ },
+ "WebCore" => {
+ "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
+ },
+ "WebKitLegacy" => {
+ "Headers" => ["*.tmp"],
+ "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
+ },
+ "WebKit" => {
+ "Headers" => ["*.tmp"],
+ "Resources" => ["*.txt", "*.in", "*.idl", "*.h"],
+ },
}
Dir.chdir base_directory