]> git.pld-linux.org Git - packages/speech-dispatcher.git/blob - speech-dispatcher-python-install.patch
- restore lost dollar
[packages/speech-dispatcher.git] / speech-dispatcher-python-install.patch
1 diff -Nur b.speech-dispatcher-0.6.5/configure.in n.speech-dispatcher-0.6.5/configure.in
2 --- b.speech-dispatcher-0.6.5/configure.in      2007-11-26 15:19:48.000000000 +0100
3 +++ n.speech-dispatcher-0.6.5/configure.in      2008-01-03 19:20:58.000000000 +0100
4 @@ -246,5 +246,5 @@
5  AC_SUBST(LIB_SPD_REVISION)
6  AC_SUBST(LIB_SPD_AGE)
7  
8 -AC_OUTPUT([Makefile src/Makefile src/server/Makefile src/modules/Makefile src/c/Makefile src/c/api/Makefile src/c/clients/Makefile src/c/clients/say/Makefile src/c/clients/spdsend/Makefile src/tests/Makefile src/audio/Makefile config/Makefile config/modules/Makefile config/clients/Makefile doc/Makefile])
9 +AC_OUTPUT([Makefile src/Makefile src/server/Makefile src/modules/Makefile src/c/Makefile src/c/api/Makefile src/c/clients/Makefile src/c/clients/say/Makefile src/c/clients/spdsend/Makefile src/tests/Makefile src/audio/Makefile config/Makefile config/modules/Makefile config/clients/Makefile doc/Makefile src/python/Makefile])
10  
11 diff -Nur b.speech-dispatcher-0.6.5/src/python/Makefile.in n.speech-dispatcher-0.6.5/src/python/Makefile.in
12 --- b.speech-dispatcher-0.6.5/src/python/Makefile.in    1970-01-01 01:00:00.000000000 +0100
13 +++ n.speech-dispatcher-0.6.5/src/python/Makefile.in    2008-01-03 19:26:41.000000000 +0100
14 @@ -0,0 +1,23 @@
15 +
16 +all:
17 +
18 +install:
19 +       if test -x /usr/bin/python; then \
20 +               ./setup.py install --prefix=@prefix@ --root=$(DESTDIR); \
21 +       else \
22 +       echo "ERROR: Python not found or something went wrong during setup.py --install ..., not installing speechd module"; \
23 +       fi
24 +
25 +uninstall:
26 +
27 +clean:
28 +       rm -f *.py[co]
29 +       rm -rf build
30 +
31 +distclean: clean
32 +
33 +distdir:
34 +
35 +
36 +check:
37 +
This page took 0.117486 seconds and 3 git commands to generate.