1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Description: Patch makefile to issue correct setup.py call.
Author: Peter Hawkins <peterh@debian.org>
--- a/dist/Makefile.in
+++ b/dist/Makefile.in
@@ -36,7 +36,7 @@ install_py_lib: mod_python src
if test -z "$(DESTDIR)" ; then \
$(PYTHON_BIN) setup.py install --optimize 2 --force ; \
else \
- $(PYTHON_BIN) setup.py install --optimize 2 --force --root $(DESTDIR) ; \
+ $(PYTHON_BIN) setup.py install --install-layout=deb --force --root $(DESTDIR) --no-compile ; \
fi
mod_python.so:
|