[Zodb-checkins] CVS: ZODB3 - Makefile:1.6.6.1
Fred Drake
cvs-admin at zope.org
Thu Oct 30 23:00:13 EST 2003
Update of /cvs-repository/ZODB3
In directory cvs.zope.org:/tmp/cvs-serv17906
Modified Files:
Tag: zodb33-devel-branch
Makefile
Log Message:
- Python 2.3 is now required
- the -q option for distutils is no longer needed; distutils is more
reasonable by default in Python 2.3
=== ZODB3/Makefile 1.6 => 1.6.6.1 ===
--- ZODB3/Makefile:1.6 Tue Apr 22 14:42:53 2003
+++ ZODB3/Makefile Thu Oct 30 23:00:12 2003
@@ -1,18 +1,14 @@
-PYTHON=python2.2
-ALTPYTHON=python2.1
+PYTHON=python2.3
all:
- $(PYTHON) setup.py -q build
- $(ALTPYTHON) setup.py -q build
+ $(PYTHON) setup.py build
install: all
- $(PYTHON) setup.py -q install
- $(ALTPYTHON) setup.py -q install
+ $(PYTHON) setup.py install
TESTOPTS=
test: all
$(PYTHON) test.py -v $(TESTOPTS)
- $(ALTPYTHON) test.py -v $(TESTOPTS)
clean:
-rm -rf build
More information about the Zodb-checkins
mailing list