[Lxml-checkins] r50779 - lxml/trunk
scoder at codespeak.net
scoder at codespeak.net
Sat Jan 19 14:36:33 CET 2008
Author: scoder
Date: Sat Jan 19 14:36:31 2008
New Revision: 50779
Modified:
lxml/trunk/ (props changed)
lxml/trunk/CHANGES.txt
lxml/trunk/Makefile
Log:
r3270 at delle: sbehnel | 2008-01-19 14:25:11 +0100
do not remove generated .c files in 'make clean', use 'make realclean' instead
Modified: lxml/trunk/CHANGES.txt
==============================================================================
--- lxml/trunk/CHANGES.txt (original)
+++ lxml/trunk/CHANGES.txt Sat Jan 19 14:36:31 2008
@@ -8,6 +8,22 @@
Features added
--------------
+Bugs fixed
+----------
+
+Other changes
+-------------
+
+* ``make clean`` no longer removes the .c files (use ``make
+ realclean`` instead)
+
+
+2.0beta1 (2008-01-11)
+=====================
+
+Features added
+--------------
+
* Parse-time XML schema validation (``schema`` parser keyword).
* XPath string results of the ``text()`` function and attribute
Modified: lxml/trunk/Makefile
==============================================================================
--- lxml/trunk/Makefile (original)
+++ lxml/trunk/Makefile Sat Jan 19 14:36:31 2008
@@ -52,9 +52,10 @@
ftest: ftest_inplace
clean:
- find . \( -name '*.o' -o -name '*.c' -o -name '*.so' -o -name '*.py[cod]' -o -name '*.dll' \) -exec rm -f {} \;
+ find . \( -name '*.o' -o -name '*.so' -o -name '*.py[cod]' -o -name '*.dll' \) -exec rm -f {} \;
rm -rf build
realclean: clean
+ find . -name '*.c' -exec rm -f {} \;
rm -f TAGS
$(PYTHON) setup.py clean -a
More information about the lxml-checkins
mailing list