diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2013-12-30 21:02:10 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2013-12-30 21:02:10 +0200 |
commit | e1151e463deb240dfb12c6be52610b99f1cd7a79 (patch) | |
tree | 8fbcb093f8c906ab9b93f66116cbdc4ff6218f13 /unix-cpy | |
parent | 8cc96a35e532ef999e5a3739deeb44f51a80744b (diff) | |
download | micropython-e1151e463deb240dfb12c6be52610b99f1cd7a79.tar.gz micropython-e1151e463deb240dfb12c6be52610b99f1cd7a79.zip |
Use rm -rf to remove build dir, so it doesn't error out if dir doesn't exist.
Diffstat (limited to 'unix-cpy')
-rw-r--r-- | unix-cpy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix-cpy/Makefile b/unix-cpy/Makefile index a77a6308b1..ef1999a1b0 100644 --- a/unix-cpy/Makefile +++ b/unix-cpy/Makefile @@ -86,6 +86,6 @@ $(BUILD)/emitcpy.o: $(PYSRC)/emit.h $(BUILD)/emitbc.o: $(PYSRC)/emit.h clean: - /bin/rm -r $(BUILD) + /bin/rm -rf $(BUILD) .PHONY: clean |