From: Steve Holme Date: Sat, 8 Aug 2015 19:48:31 +0000 (+0100) Subject: checksrc.bat: Fixed incorrect 'lib\vtls' path check in commit 333c36b276 X-Git-Tag: curl-7_44_0~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2b743dcf8e308678bf77ae63c1fc00fde33bb98c;p=thirdparty%2Fcurl.git checksrc.bat: Fixed incorrect 'lib\vtls' path check in commit 333c36b276 --- diff --git a/projects/checksrc.bat b/projects/checksrc.bat index 43fea12587..6ec87349c4 100644 --- a/projects/checksrc.bat +++ b/projects/checksrc.bat @@ -73,8 +73,8 @@ rem *************************************************************************** for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" -Wcurl_config.h.cmake "%%i" ) - rem Check the vtls directory - if exist %SRC_DIR%\vtls ( + rem Check the lib\vtls directory + if exist %SRC_DIR%\lib\vtls ( for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.c.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i" for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i" )