[Lxml-checkins] r33733 - lxml/trunk
scoder at codespeak.net
scoder at codespeak.net
Wed Oct 25 19:40:22 CEST 2006
Author: scoder
Date: Wed Oct 25 19:40:21 2006
New Revision: 33733
Modified:
lxml/trunk/setup.py
Log:
removed --no-local-pyrex option from setup.py again: just delete the pyrex directory instead
Modified: lxml/trunk/setup.py
==============================================================================
--- lxml/trunk/setup.py (original)
+++ lxml/trunk/setup.py Wed Oct 25 19:40:21 2006
@@ -100,10 +100,7 @@
# setup etree extension building
-if '--no-local-pyrex' in sys.argv:
- sys.argv.remove('--no-local-pyrex')
-else:
- sys.path.insert(0, os.path.join(src_dir, 'src')) # in case we use a local Pyrex
+sys.path.insert(0, os.path.join(src_dir, 'pyrex')) # in case we use a local Pyrex
try:
from Pyrex.Distutils import build_ext as build_pyx
More information about the lxml-checkins
mailing list