mirror of
https://github.com/curl/curl.git
synced 2026-08-25 19:03:33 +03:00
It is sufficient to pipe stderr to NUL to get rid of the nasty messages.
This commit is contained in:
parent
2f0532a072
commit
2b6208a6de
4 changed files with 6 additions and 6 deletions
|
|
@ -34,12 +34,12 @@ RC = wrc
|
|||
!endif
|
||||
|
||||
!if $(__VERSION__) < 1250
|
||||
RM = del /q /f >NUL 2>&1
|
||||
RM = del /q /f 2>NUL
|
||||
!else
|
||||
RM = rm -f
|
||||
!endif
|
||||
MD = mkdir
|
||||
RD = rmdir /q /s >NUL 2>&1
|
||||
RD = rmdir /q /s 2>NUL
|
||||
CP = copy
|
||||
|
||||
CFLAGS = -3r -mf -hc -zff -zgf -zq -zm -s -fr=con -w2 -fpi -oilrtfm &
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue