This patch prevents "make clean" from failing when the source tree is already
clean.
---
 wmppp.app/wmppp/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/wmppp.app/wmppp/Makefile b/wmppp.app/wmppp/Makefile
index 0800bac..763e52a 100644
--- a/wmppp.app/wmppp/Makefile
+++ b/wmppp.app/wmppp/Makefile
@@ -16,9 +16,9 @@ all:: wmppp getmodemspeed
 
 clean::
        for i in $(OBJS) ; do \
-               rm $$i; \
+               rm -f $$i; \
        done
-       rm wmppp getmodemspeed
+       rm -f wmppp getmodemspeed
 
 install::
 
-- 
1.9.1


-- 
To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.

Reply via email to