From 6c612bf2512d34cf543ed59ded6b78a8c2f08659 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Mon, 16 May 2022 10:13:23 -0700 Subject: [PATCH] Tools: Don't validate file_util.c. It's Windows-only. --- tools/validate-clang-check.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/validate-clang-check.sh b/tools/validate-clang-check.sh index 021a864330..2d295bcc7e 100755 --- a/tools/validate-clang-check.sh +++ b/tools/validate-clang-check.sh @@ -36,6 +36,11 @@ for FILE in $COMMIT_FILES; do continue 2 fi done + # wsutil/file_util.c is Windows-only. + if test "$FILE_BASENAME" = "file_util.c" + then + continue + fi # iLBC: the file is not even compiled when ilbc is not installed if test "$FILE_BASENAME" = "iLBCdecode.c" then