Dash:
[t2.git] / package / text2speech / rsynth / destdir.patch
blob1624a0abba9229691abdd9a3eb52db059977a00c
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
3 #
4 # T2 SDE: package/.../rsynth/destdir.patch
5 # Copyright (C) 2007 The T2 SDE Project
6 #
7 # More information can be found in the files COPYING and README.
8 #
9 # This patch file is dual-licensed. It is available under the license the
10 # patched project is licensed under, as long as it is an OpenSource license
11 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
12 # of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 # --- T2-COPYRIGHT-NOTE-END ---
17 --- rsynth-2.0/Makefile.in.vanilla 2007-06-18 11:56:04.801457324 +0200
18 +++ rsynth-2.0/Makefile.in 2007-06-18 11:56:27.994779036 +0200
19 @@ -65,11 +65,11 @@
21 install : $(PROGS) $(DICTS)
22 for f in $(PROGS); do \
23 - $(INSTALL_PROG) $$f $(BIN_DIR); \
24 + $(INSTALL_PROG) $$f $(DESTDIR)$(BIN_DIR); \
25 done
26 - $(INSTALL) -d $(LIB_DIR)
27 + $(INSTALL) -d $(DESTDIR)$(LIB_DIR)
28 for f in $(DICTS); do \
29 - $(INSTALL_DATA) $$f $(LIB_DIR); \
30 + $(INSTALL_DATA) $$f $(DESTDIR)$(LIB_DIR); \
31 done
33 @make_dist@