From: dbs Date: Tue, 15 Jan 2008 17:50:06 +0000 (+0000) Subject: Make cleaning in Python dir optional as well, to avoid problems with missing setuptools X-Git-Tag: osrf_rel_2_0_1~750 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=48f8762b84548a825ffc6c77dcb16e7bed64fa58;p=OpenSRF.git Make cleaning in Python dir optional as well, to avoid problems with missing setuptools git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1217 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/Makefile b/src/Makefile index b6209a2..b789ffa 100644 --- a/src/Makefile +++ b/src/Makefile @@ -142,7 +142,7 @@ clean: make -C srfsh clean make -C c-apps clean make -C java clean - make -C python clean + if [ -n "$(OSRF_INSTALL_PYTHON)" ]; then echo $@; make -C python clean; fi; /bin/rm -rf $(TMPDIR) *.o diff --git a/src/python/Makefile b/src/python/Makefile index 9eafc3c..6be673c 100644 --- a/src/python/Makefile +++ b/src/python/Makefile @@ -18,5 +18,5 @@ install: build # CLEAN # ------------------------------------------------------------------------------ clean: - /bin/rm -rf build + python setup.py clean --all