From: Brian Macy Date: Mon, 29 Mar 1999 21:14:23 +0000 (+0000) Subject: Don't fail when deleting files that might not exist X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a43e96b6ce0e0425b7f86e85e3a15fe9a5e20710 Don't fail when deleting files that might not exist git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2001 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/zlib/makefile.b32 b/src/zlib/makefile.b32 index 256f7fffa1..90662805c9 100644 --- a/src/zlib/makefile.b32 +++ b/src/zlib/makefile.b32 @@ -104,6 +104,6 @@ test: example.exe minigzip.exe echo hello world | minigzip | minigzip -d clean: - erase *.obj - erase *.exe - erase $(LIBTARGET) + -erase *.obj + -erase *.exe + -erase $(LIBTARGET)