]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
scripts: Added missing comments
authorSteve Holme <steve_holme@hotmail.com>
Sat, 8 Aug 2015 10:11:46 +0000 (11:11 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Sat, 8 Aug 2015 10:36:45 +0000 (11:36 +0100)
projects/build-openssl.bat
projects/build-wolfssl.bat
projects/checksrc.bat

index e2bcf751e0c44da658b794b12f5a53cac191833a..19b7357cfb48bd29c6c3a5d006b892152981545f 100644 (file)
@@ -24,6 +24,8 @@ rem ***************************************************************************
 :begin
   rem Check we are running on a Windows NT derived OS
   if not "%OS%" == "Windows_NT" goto nodos
+
+  rem Set our variables
   setlocal
   set VC_VER=
   set BUILD_PLATFORM=
index ad755e937633f755efe3aa507c505e078fa9e086..52f714d6aad68b9da975a68e6879ba145ce77faf 100644 (file)
@@ -25,6 +25,8 @@ rem ***************************************************************************
 :begin
   rem Check we are running on a Windows NT derived OS
   if not "%OS%" == "Windows_NT" goto nodos
+
+  rem Set our variables
   setlocal
   set SUCCESSFUL_BUILDS=
   set VC_VER=
index 37dc808a9f8fbe5a7f7652ad5636a1a820b7e15d..23d3aa2e78428076c2d7ed63932626585ff9d8ae 100644 (file)
@@ -24,6 +24,8 @@ rem ***************************************************************************
 :begin
   rem Check we are running on a Windows NT derived OS
   if not "%OS%" == "Windows_NT" goto nodos
+
+  rem Set our variables
   setlocal
 
 :parseArgs
@@ -50,12 +52,18 @@ rem ***************************************************************************
   if not exist "%SRC_DIR%" goto nosrc
 
 :start
+  rem Check the src directory
   for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.c.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\src" -Wtool_hugehelp.c "%%i"
   for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\src" "%%i"
+
+  rem Check the lib directory
   for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.c.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" "%%i"
   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
   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"
+
   goto success
 
 :syntax