mirror of https://github.com/nodejs/node.git
Makefile: Don't use ** in globs
Many shells don't have GLOBSTAR turned on by default. This is why uv and v8 so often don't get cleaned out properly.v0.7.4-release
parent
9a6012edd9
commit
02c1cb54aa
3
Makefile
3
Makefile
|
@ -39,7 +39,8 @@ uninstall:
|
||||||
out/Release/node tools/installer.js ./config.gypi uninstall
|
out/Release/node tools/installer.js ./config.gypi uninstall
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-rm -rf out/Makefile node node_g out/**/*.o out/**/*.a out/$(BUILDTYPE)/node
|
-rm -rf out/Makefile node node_g out/$(BUILDTYPE)/node
|
||||||
|
-find out/ -name '*.o' -o -name '*.a' | xargs rm -rf
|
||||||
|
|
||||||
distclean:
|
distclean:
|
||||||
-rm -rf out
|
-rm -rf out
|
||||||
|
|
Loading…
Reference in New Issue