diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2015-03-30 16:22:58 -0400 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-03-30 22:39:13 +0200 |
commit | 6419aee248d76b0cf53d1ff78b31a855fbff6f03 (patch) | |
tree | 975d2dc1d1bfc3ceda58a6ccb5f24466f4bd1bd5 /projects/checksrc.bat | |
parent | 5b668606527613179d0349f21b4ab0df2971e3d2 (diff) | |
download | curl-6419aee248d76b0cf53d1ff78b31a855fbff6f03.tar.gz |
checksrc: Windows-specific input fixes
lib/config-win32ce.h
- Fix whitespace for checksrc compliance.
lib/checksrc.pl
- Remove trailing carriage returns from input.
projects/checksrc.bat
- Ignore tool_hugehelp.c.
Diffstat (limited to 'projects/checksrc.bat')
-rw-r--r-- | projects/checksrc.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/checksrc.bat b/projects/checksrc.bat index d81ce7de0..1e8373420 100644 --- a/projects/checksrc.bat +++ b/projects/checksrc.bat @@ -46,7 +46,7 @@ rem *************************************************************************** if not exist "%SRC_DIR%" goto nosrc :start - for /f "delims=" %%i in ('dir %SRC_DIR%\src\*.c.* /b') do @perl %SRC_DIR%\lib\checksrc.pl -D%SRC_DIR%\src "%%i" + 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" 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" |