summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2011-08-10 20:16:14 -0700
committerJoshua Haberman <jhaberman@gmail.com>2011-08-10 20:16:14 -0700
commit25cdf1e6f7dedeaa19ad10ca1c97c6f39894100a (patch)
tree26d65d522703939f0dff58a0eb9d68febcf18407 /Makefile
parent336268b3d7e8860e86171650882d0a4f7d62ecfd (diff)
Fixed overzealous assert().
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 314b69b..69549d9 100644
--- a/Makefile
+++ b/Makefile
@@ -397,7 +397,7 @@ lang_ext/lua/upb.so: lang_ext/lua/upb.c $(LIBUPB_PIC)
# Python extension #############################################################
-PYTHON=python2.6-dbg
+PYTHON=python
PYTHONEXT=lang_ext/python/build/install/lib/python/upb/__init__.so
python: $(PYTHONEXT)
$(PYTHONEXT): $(LIBUPB_PIC) lang_ext/python/upb.c
@@ -405,4 +405,4 @@ $(PYTHONEXT): $(LIBUPB_PIC) lang_ext/python/upb.c
$(Q) cd lang_ext/python && $(PYTHON) setup.py build --debug install --home=build/install
pythontest: $(PYTHONEXT)
- cd lang_ext/python && cp test.py build/install/lib/python && valgrind $(PYTHON) ./build/install/lib/python/test.py
+ cd lang_ext/python && cp test.py build/install/lib/python && $(PYTHON) ./build/install/lib/python/test.py
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback