Browse Source

build: don't run find in non-existent directory

PR-URL: https://github.com/iojs/io.js/pull/97
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
archived-io.js-v0.12
Jose Luis Rivas 10 years ago
committed by Ben Noordhuis
parent
commit
244a8f78d6
  1. 2
      Makefile

2
Makefile

@ -79,7 +79,7 @@ uninstall:
clean:
-rm -rf out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(NODE_EXE) blog.html email.md
-find out/ -name '*.o' -o -name '*.a' | xargs rm -rf
@if [ -d out ]; then find out/ -name '*.o' -o -name '*.a' | xargs rm -rf; fi
-rm -rf node_modules
distclean:

Loading…
Cancel
Save