Francois Gouget : testbot/testagentd: 'make clean' should not fail if some files don't exist.

Alexandre Julliard julliard at winehq.org
Wed Dec 5 13:20:22 CST 2012


Module: tools
Branch: master
Commit: 42160e6915332b5d6ad755cde6068335a89bcbea
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=42160e6915332b5d6ad755cde6068335a89bcbea

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Wed Dec  5 05:35:41 2012 +0100

testbot/testagentd: 'make clean' should not fail if some files don't exist.

---

 testbot/src/testagentd/Makefile |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/testbot/src/testagentd/Makefile b/testbot/src/testagentd/Makefile
index f6035be..417120e 100644
--- a/testbot/src/testagentd/Makefile
+++ b/testbot/src/testagentd/Makefile
@@ -40,6 +40,6 @@ winetestbot.iso: TestAgentd.exe
 
 
 clean:
-	rm *.obj *.o
-	rm TestAgentd.exe
-	rm winetestbot.iso
+	rm -f *.obj *.o
+	rm -f TestAgentd.exe
+	rm -f winetestbot.iso




More information about the wine-cvs mailing list