From 709991d548225f4dd512687ae7bc8af8a0f8f2c6 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 12 Sep 2015 11:19:24 +0100 Subject: checksrc.bat: Added support for checking the new vauth directory --- projects/checksrc.bat | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'projects') diff --git a/projects/checksrc.bat b/projects/checksrc.bat index 34db1520a..9453ddd24 100644 --- a/projects/checksrc.bat +++ b/projects/checksrc.bat @@ -91,6 +91,12 @@ rem *************************************************************************** for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" -Wcurl_config.h.cmake "%%i" ) + rem Check the lib\vauth directory + if exist %SRC_DIR%\lib\vauth ( + for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vauth\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vauth" "%%i" + for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vauth\*.h.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vauth" "%%i" + ) + rem Check the lib\vtls directory if exist %SRC_DIR%\lib\vtls ( for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.c.*" /b 2^>NUL') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i" -- cgit v1.2.3