diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-08-14 06:54:16 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-08-14 07:34:37 +0100 |
commit | 1a85c8ef150abc4725059a45015f38d09849f44b (patch) | |
tree | b9aa67110d97b495bf199bd62a0e8e0f2803dcb7 /buildconf.bat | |
parent | 9e1b1ca606d91822502f2bad26e781aa5e0dcfa0 (diff) | |
download | curl-1a85c8ef150abc4725059a45015f38d09849f44b.tar.gz |
* buildconf.bat: Fixed issues when ran in directories with special chars
Bug: https://github.com/bagder/curl/pull/379
Reported-by: Daniel Seither
Diffstat (limited to 'buildconf.bat')
-rw-r--r-- | buildconf.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildconf.bat b/buildconf.bat index 8c1af36dc..7c53fc5f2 100644 --- a/buildconf.bat +++ b/buildconf.bat @@ -107,8 +107,8 @@ rem set BASIC_HUGEHELP=0 rem Create Makefile + echo * %CD%\Makefile if exist Makefile.dist ( - echo * %CD%\Makefile copy /Y Makefile.dist Makefile 1>NUL 2>&1 if errorlevel 1 ( if "%OS%" == "Windows_NT" endlocal @@ -129,8 +129,8 @@ rem cmd /c exit 0 rem Create curlbuild.h + echo * %CD%\include\curl\curlbuild.h if exist include\curl\curlbuild.h.dist ( - echo * %CD%\include\curl\curlbuild.h copy /Y include\curl\curlbuild.h.dist include\curl\curlbuild.h 1>NUL 2>&1 if errorlevel 1 ( if "%OS%" == "Windows_NT" endlocal |