diff options
author | Daniel Gustafsson <daniel@yesql.se> | 2019-07-09 17:33:07 +0200 |
---|---|---|
committer | Daniel Gustafsson <daniel@yesql.se> | 2019-07-09 17:33:07 +0200 |
commit | 8dc21dbb8472e8bb68ec3dc35e7fed9cefb679f4 (patch) | |
tree | 7ac5a57e9fc271b4aea707b08e9ed39ea8be3bf6 /buildconf.bat | |
parent | 5fecc4d6267b6dfba023347289ddff66c2521635 (diff) | |
download | curl-8dc21dbb8472e8bb68ec3dc35e7fed9cefb679f4.tar.gz |
buildconf: fix header filename
The header file inclusion had a typo, it should be .h and not .hd.
Fix by renaming.
Fixes #4102
Reported-by: AceCrow on Github
Diffstat (limited to 'buildconf.bat')
-rw-r--r-- | buildconf.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildconf.bat b/buildconf.bat index a6bded34b..8511a1fcb 100644 --- a/buildconf.bat +++ b/buildconf.bat @@ -212,7 +212,7 @@ rem copy /Y src\tool_hugehelp.c.cvs src\tool_hugehelp.c 1>NUL 2>&1 ) else ( echo #include "tool_setup.h"> src\tool_hugehelp.c - echo #include "tool_hugehelp.hd">> src\tool_hugehelp.c + echo #include "tool_hugehelp.h">> src\tool_hugehelp.c echo.>> src\tool_hugehelp.c echo void hugehelp(void^)>> src\tool_hugehelp.c echo {>> src\tool_hugehelp.c |