diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-09-12 11:19:24 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2016-03-25 09:12:00 +0000 |
commit | 709991d548225f4dd512687ae7bc8af8a0f8f2c6 (patch) | |
tree | af64806934c84a8436f558ca3341729117f86be0 /projects | |
parent | dc72f8df0c914de688077f296bf94360cf928529 (diff) | |
download | curl-709991d548225f4dd512687ae7bc8af8a0f8f2c6.tar.gz |
checksrc.bat: Added support for checking the new vauth directory
Diffstat (limited to 'projects')
-rw-r--r-- | projects/checksrc.bat | 6 |
1 files changed, 6 insertions, 0 deletions
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" |