mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
winbuild: only delete OUTFILE if it exists
This removes the slightly annoying "Could not file LIBCURL_OBJS.inc" and "Could not find CURL_OBJS.inc.inc" message when building into a clean folder. closes #2602
This commit is contained in:
parent
d0f1d6c8fa
commit
8ff7555891
@ -1,5 +1,7 @@
|
||||
@echo OFF
|
||||
@del %OUTFILE%
|
||||
@if exist %OUTFILE% (
|
||||
del %OUTFILE%
|
||||
)
|
||||
@echo %MACRO_NAME% = \> %OUTFILE%
|
||||
@for %%i in (%*) do @echo %DIROBJ%/%%i \>> %OUTFILE%
|
||||
@echo. >> %OUTFILE%
|
||||
|
Loading…
Reference in New Issue
Block a user