aboutsummaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2015-08-08 20:48:31 +0100
committerSteve Holme <steve_holme@hotmail.com>2015-08-08 21:01:29 +0100
commit2b743dcf8e308678bf77ae63c1fc00fde33bb98c (patch)
treecff624feff92edd78162b51c06f39b620a63df86 /projects
parent333c36b2760eb51da5ff2f6dc9030c4bba71f506 (diff)
checksrc.bat: Fixed incorrect 'lib\vtls' path check in commit 333c36b276
Diffstat (limited to 'projects')
-rw-r--r--projects/checksrc.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/checksrc.bat b/projects/checksrc.bat
index 43fea1258..6ec87349c 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"
)