aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.Watcom
diff options
context:
space:
mode:
authorGuenter Knauf <lists@gknw.net>2010-08-18 16:08:20 +0200
committerGuenter Knauf <lists@gknw.net>2010-08-18 16:08:20 +0200
commit2b6208a6deecddf35842a28b056934659f45e244 (patch)
tree50e2d235fc7d48037496d45ec3bd1fce11f3b5b8 /src/Makefile.Watcom
parent2f0532a0726e8c893e833bbbc9d5590c50ed13d1 (diff)
It is sufficient to pipe stderr to NUL to get rid of the nasty messages.
Diffstat (limited to 'src/Makefile.Watcom')
-rw-r--r--src/Makefile.Watcom4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.Watcom b/src/Makefile.Watcom
index 2cb805d06..1242cc266 100644
--- a/src/Makefile.Watcom
+++ b/src/Makefile.Watcom
@@ -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 &