From ff6409469d3ce4e1ca28eddf6c6490fab34cd604 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 19 Apr 2010 15:48:12 -0700 Subject: [PATCH] Make 'make distclean' work on solaris --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 10de43a4fb..610e3cb71d 100644 --- a/Makefile +++ b/Makefile @@ -65,10 +65,11 @@ docclean: clean: @$(WAF) clean - @-find tools/ -name "*.pyc" -delete + @-find tools -name "*.pyc" | xargs rm -f -distclean: clean docclean - @-rm -rf build/ +distclean: docclean + @-find tools -name "*.pyc" | xargs rm -f + @-rm -rf build/ node node_g check: @tools/waf-light check