[Opensrf-commits] r1217 - in trunk/src: . python
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Jan 15 13:15:31 EST 2008
Author: dbs
Date: 2008-01-15 12:50:06 -0500 (Tue, 15 Jan 2008)
New Revision: 1217
Modified:
trunk/src/Makefile
trunk/src/python/Makefile
Log:
Make cleaning in Python dir optional as well, to avoid problems with missing setuptools
Modified: trunk/src/Makefile
===================================================================
--- trunk/src/Makefile 2008-01-15 17:42:45 UTC (rev 1216)
+++ trunk/src/Makefile 2008-01-15 17:50:06 UTC (rev 1217)
@@ -142,7 +142,7 @@
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
Modified: trunk/src/python/Makefile
===================================================================
--- trunk/src/python/Makefile 2008-01-15 17:42:45 UTC (rev 1216)
+++ trunk/src/python/Makefile 2008-01-15 17:50:06 UTC (rev 1217)
@@ -18,5 +18,5 @@
# CLEAN
# ------------------------------------------------------------------------------
clean:
- /bin/rm -rf build
+ python setup.py clean --all
More information about the opensrf-commits
mailing list