From 835c03e0763003dcc1a48ca0e552b8e0528fa287 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Wed, 18 Aug 2010 16:59:21 +0200 Subject: [PATCH] It is sufficient to pipe stderr to NUL to get rid of the nasty messages. --- win32/Makefile.Watcom | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win32/Makefile.Watcom b/win32/Makefile.Watcom index a71aaaa..b6b693f 100644 --- a/win32/Makefile.Watcom +++ b/win32/Makefile.Watcom @@ -35,12 +35,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 -zc -s -fr=nul -w2 -fpi -oilrtfm &