diff options
-rwxr-xr-x | Meta/check-debug-flags.sh | 1 | ||||
-rwxr-xr-x | Meta/check-newlines-at-eof.py | 3 | ||||
-rwxr-xr-x | Meta/check-style.sh | 1 | ||||
-rwxr-xr-x | Meta/lint-clang-format.sh | 3 |
4 files changed, 2 insertions, 6 deletions
diff --git a/Meta/check-debug-flags.sh b/Meta/check-debug-flags.sh index b91a3e6b5c..9719d2a8d6 100755 --- a/Meta/check-debug-flags.sh +++ b/Meta/check-debug-flags.sh @@ -26,7 +26,6 @@ done < <( '*.h' \ '*.in' \ ':!:Kernel/FileSystem/ext2_fs.h' \ - ':!:Userland/Libraries/LibELF/exec_elf.h' \ | xargs grep -P '(_DEBUG|DEBUG_)' \ | sed -re 's,^.*[^a-zA-Z0-9_]([a-zA-Z0-9_]*DEBUG[a-zA-Z0-9_]*).*$,\1,' \ | sort \ diff --git a/Meta/check-newlines-at-eof.py b/Meta/check-newlines-at-eof.py index dbafff1ea0..ba40c90d12 100755 --- a/Meta/check-newlines-at-eof.py +++ b/Meta/check-newlines-at-eof.py @@ -22,8 +22,7 @@ def run(): "CMake*.txt", "**/CMake*.txt", ":!:AK/Tests/*.json", - ":!:Kernel/FileSystem/ext2_fs.h", - ":!:Userland/Libraries/LibELF/exec_elf.h" + ":!:Kernel/FileSystem/ext2_fs.h" ], check=True, capture_output=True diff --git a/Meta/check-style.sh b/Meta/check-style.sh index 2b59bd86f0..b933ceb001 100755 --- a/Meta/check-style.sh +++ b/Meta/check-style.sh @@ -41,7 +41,6 @@ done < <(git ls-files -- \ '*.h' \ ':!:Base' \ ':!:Kernel/FileSystem/ext2_fs.h' \ - ':!:Userland/Libraries/LibELF/exec_elf.h' \ ) exit_status=0 diff --git a/Meta/lint-clang-format.sh b/Meta/lint-clang-format.sh index d9e12eada8..d2f0d333b6 100755 --- a/Meta/lint-clang-format.sh +++ b/Meta/lint-clang-format.sh @@ -12,8 +12,7 @@ if [ "$#" -eq "1" ]; then '*.h' \ ':!:Base' \ ':!:Kernel/FileSystem/ext2_fs.h' \ - ':!:Userland/Libraries/LibC/syslog.h' \ - ':!:Userland/Libraries/LibELF/exec_elf.h' + ':!:Userland/Libraries/LibC/syslog.h' ) else files=() |