From e29f0323ea226a80c7e81ed89c3fa42bb1bf91ae Mon Sep 17 00:00:00 2001 From: "roberto@mrspurr" Date: Fri, 17 Jun 2011 07:33:53 +0200 Subject: [PATCH] fixed make clean --- uwsgiconfig.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/uwsgiconfig.py b/uwsgiconfig.py index caaa3ccf..2204ec6b 100644 --- a/uwsgiconfig.py +++ b/uwsgiconfig.py @@ -686,6 +686,9 @@ if __name__ == "__main__": build_plugin(sys.argv[2], uc, cflags, ldflags, libs, name) elif cmd == '--clean': os.system("rm *.o") + os.system("rm proto/*.o") + os.system("rm lib/*.o") + os.system("rm plugins/*/*.o") else: print("unknown uwsgiconfig command")