Skip to content

Commit ff64094

Browse files
committed
Make 'make distclean' work on solaris
1 parent 6e715b8 commit ff64094

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,11 @@ docclean:
6565

6666
clean:
6767
@$(WAF) clean
68-
@-find tools/ -name "*.pyc" -delete
68+
@-find tools -name "*.pyc" | xargs rm -f
6969

70-
distclean: clean docclean
71-
@-rm -rf build/
70+
distclean: docclean
71+
@-find tools -name "*.pyc" | xargs rm -f
72+
@-rm -rf build/ node node_g
7273

7374
check:
7475
@tools/waf-light check

0 commit comments

Comments
 (0)