#! /bin/sh /usr/share/dpatch/dpatch-run
## 02_python-makefile.dpatch by <pdm@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Don't compile Python files. Fix path settings.
@DPATCH@
Index: speech-dispatcher/src/python/Makefile.in
===================================================================
--- speech-dispatcher.orig/src/python/Makefile.in 2010-06-19 09:08:14.000000000 +0200
+++ speech-dispatcher/src/python/Makefile.in 2010-06-19 09:55:38.000000000 +0200
@@ -17,7 +17,7 @@
install:
if test -x /usr/bin/python; then \
- ./setup.py install --prefix=${DESTDIR}${prefix}; \
+ ./setup.py install --no-compile --prefix=${DESTDIR}${prefix}; \
else \
echo "Python not found, not installing speechd module nor spd-conf"; \
fi