annotate build-aux/subst-default-vals.in.sh @ 25054:6652d3823428 stable

maint: Update copyright dates in all source files.
author John W. Eaton <jwe@octave.org>
date Fri, 30 Mar 2018 09:19:05 -0400
parents 1a46d174a483
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21398
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 #! /bin/sh
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 #
25054
6652d3823428 maint: Update copyright dates in all source files.
John W. Eaton <jwe@octave.org>
parents: 24899
diff changeset
3 # Copyright (C) 2016-2018 John W. Eaton
21398
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 #
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 # This file is part of Octave.
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 #
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23712
diff changeset
7 # Octave is free software: you can redistribute it and/or modify it
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 21907
diff changeset
8 # under the terms of the GNU General Public License as published by
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23712
diff changeset
9 # the Free Software Foundation, either version 3 of the License, or
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 21907
diff changeset
10 # (at your option) any later version.
21398
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 #
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 21907
diff changeset
12 # Octave is distributed in the hope that it will be useful, but
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 21907
diff changeset
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 21907
diff changeset
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 21907
diff changeset
15 # GNU General Public License for more details.
21398
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 #
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 # You should have received a copy of the GNU General Public License
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 # along with Octave; see the file COPYING. If not, see
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23712
diff changeset
19 # <https://www.gnu.org/licenses/>.
21398
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 : ${SED=@SED@}
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22
21409
1aa293d58df0 fully expand all env vars before writing config.status (bug #46063)
John W. Eaton <jwe@octave.org>
parents: 21403
diff changeset
23 canonical_host_type="@canonical_host_type@"
1aa293d58df0 fully expand all env vars before writing config.status (bug #46063)
John W. Eaton <jwe@octave.org>
parents: 21403
diff changeset
24 DEFAULT_PAGER="@DEFAULT_PAGER@"
1aa293d58df0 fully expand all env vars before writing config.status (bug #46063)
John W. Eaton <jwe@octave.org>
parents: 21403
diff changeset
25 EXEEXT="@EXEEXT@"
1aa293d58df0 fully expand all env vars before writing config.status (bug #46063)
John W. Eaton <jwe@octave.org>
parents: 21403
diff changeset
26 man1ext="@man1ext@"
1aa293d58df0 fully expand all env vars before writing config.status (bug #46063)
John W. Eaton <jwe@octave.org>
parents: 21403
diff changeset
27 api_version="@OCTAVE_API_VERSION@"
1aa293d58df0 fully expand all env vars before writing config.status (bug #46063)
John W. Eaton <jwe@octave.org>
parents: 21403
diff changeset
28 OCTAVE_RELEASE=""
1aa293d58df0 fully expand all env vars before writing config.status (bug #46063)
John W. Eaton <jwe@octave.org>
parents: 21403
diff changeset
29 version="@PACKAGE_VERSION@"
21398
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30
23712
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
31 prefix="@prefix@"
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
32 exec_prefix="@exec_prefix@"
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
33
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
34 archlibdir=`echo "@archlibdir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
35 bindir=`echo "@bindir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
36 libdir=`echo "@libdir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
37 libexecdir=`echo "@libexecdir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
38 localapiarchlibdir=`echo "@localapiarchlibdir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
39 localapioctfiledir=`echo "@localapioctfiledir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
40 localarchlibdir=`echo "@localarchlibdir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
41 localoctfiledir=`echo "@localoctfiledir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
42 localverarchlibdir=`echo "@localverarchlibdir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
43 localveroctfiledir=`echo "@localveroctfiledir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
44 octfiledir=`echo "@octfiledir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
45 octlibdir=`echo "@octlibdir@" | sed "s|^${exec_prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
46
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
47 datadir=`echo "@datadir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
48 datarootdir=`echo "@datarootdir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
49 doc_cache_file=`echo "@doc_cache_file@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
50 exec_prefix=`echo "@exec_prefix@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
51 fcnfiledir=`echo "@fcnfiledir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
52 imagedir=`echo "@imagedir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
53 includedir=`echo "@includedir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
54 infodir=`echo "@infodir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
55 infofile=`echo "@infofile@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
56 localapifcnfiledir=`echo "@localapifcnfiledir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
57 localfcnfiledir=`echo "@localfcnfiledir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
58 localstartupfiledir=`echo "@localstartupfiledir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
59 localapiarchlibdir=`echo "@localapiarchlibdir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
60 localverfcnfiledir=`echo "@localverfcnfiledir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
61 man1dir=`echo "@man1dir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
62 mandir=`echo "@mandir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
63 octdatadir=`echo "@octdatadir@" | sed "s|^${prefix}/||"`
24876
a41e264609c0 Fix misconfigured OCTAVE_DOCDIR (bug #53006)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 24875
diff changeset
64 octdocdir=`echo "@octdocdir@" | sed "s|^${prefix}/||"`
23712
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
65 octetcdir=`echo "@octetcdir@" | sed "s|^${prefix}/||"`
24899
1a46d174a483 include a proper definition of Octave's private font fallback directory
Mike Miller <mtmiller@octave.org>
parents: 24876
diff changeset
66 octfontsdir=`echo "@octfontsdir@" | sed "s|^${prefix}/||"`
23712
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
67 octincludedir=`echo "@octincludedir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
68 octlocaledir=`echo "@octlocaledir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
69 octtestsdir=`echo "@octtestsdir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
70 startupfiledir=`echo "@startupfiledir@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
71 texi_macros_file=`echo "@texi_macros_file@" | sed "s|^${prefix}/||"`
b95c430c0649 revamp insertion of config variables into binaries and eliminate some macros
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
72
21398
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
73 $SED \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
74 -e "s|%NO_EDIT_WARNING%|DO NOT EDIT! Generated automatically by subst-default-vals.|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
75 -e "s|%OCTAVE_ARCHLIBDIR%|\"${archlibdir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
76 -e "s|%OCTAVE_BINDIR%|\"${bindir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
77 -e "s|%OCTAVE_CANONICAL_HOST_TYPE%|\"${canonical_host_type}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
78 -e "s|%OCTAVE_DATADIR%|\"${datadir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
79 -e "s|%OCTAVE_DATAROOTDIR%|\"${datarootdir}\"|" \
24876
a41e264609c0 Fix misconfigured OCTAVE_DOCDIR (bug #53006)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 24875
diff changeset
80 -e "s|%OCTAVE_DOCDIR%|\"${docdir}\"|" \
21398
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
81 -e "s|%OCTAVE_DEFAULT_PAGER%|\"${DEFAULT_PAGER}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
82 -e "s|%OCTAVE_DOC_CACHE_FILE%|\"${doc_cache_file}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
83 -e "s|%OCTAVE_EXEC_PREFIX%|\"${exec_prefix}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
84 -e "s|%OCTAVE_EXEEXT%|\"${EXEEXT}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
85 -e "s|%OCTAVE_FCNFILEDIR%|\"${fcnfiledir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
86 -e "s|%OCTAVE_IMAGEDIR%|\"${imagedir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
87 -e "s|%OCTAVE_INCLUDEDIR%|\"${includedir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
88 -e "s|%OCTAVE_INFODIR%|\"${infodir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
89 -e "s|%OCTAVE_INFOFILE%|\"${infofile}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
90 -e "s|%OCTAVE_LIBDIR%|\"${libdir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
91 -e "s|%OCTAVE_LIBEXECDIR%|\"${libexecdir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
92 -e "s|%OCTAVE_LOCALAPIFCNFILEDIR%|\"${localapifcnfiledir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
93 -e "s|%OCTAVE_LOCALAPIOCTFILEDIR%|\"${localapioctfiledir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
94 -e "s|%OCTAVE_LOCALARCHLIBDIR%|\"${localarchlibdir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
95 -e "s|%OCTAVE_LOCALFCNFILEDIR%|\"${localfcnfiledir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
96 -e "s|%OCTAVE_LOCALOCTFILEDIR%|\"${localoctfiledir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
97 -e "s|%OCTAVE_LOCALSTARTUPFILEDIR%|\"${localstartupfiledir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
98 -e "s|%OCTAVE_LOCALAPIARCHLIBDIR%|\"${localapiarchlibdir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
99 -e "s|%OCTAVE_LOCALVERARCHLIBDIR%|\"${localverarchlibdir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
100 -e "s|%OCTAVE_LOCALVERFCNFILEDIR%|\"${localverfcnfiledir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
101 -e "s|%OCTAVE_LOCALVEROCTFILEDIR%|\"${localveroctfiledir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
102 -e "s|%OCTAVE_MAN1DIR%|\"${man1dir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
103 -e "s|%OCTAVE_MAN1EXT%|\"${man1ext}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
104 -e "s|%OCTAVE_MANDIR%|\"${mandir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
105 -e "s|%OCTAVE_OCTDATADIR%|\"${octdatadir}\"|" \
24875
7c7b60dd4d4c Generate Qt compressed help and collection files for the manual (bug #53006)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 24534
diff changeset
106 -e "s|%OCTAVE_OCTDOCDIR%|\"${octdocdir}\"|" \
24899
1a46d174a483 include a proper definition of Octave's private font fallback directory
Mike Miller <mtmiller@octave.org>
parents: 24876
diff changeset
107 -e "s|%OCTAVE_OCTETCDIR%|\"${octetcdir}\"|" \
21398
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
108 -e "s|%OCTAVE_OCTFILEDIR%|\"${octfiledir}\"|" \
24899
1a46d174a483 include a proper definition of Octave's private font fallback directory
Mike Miller <mtmiller@octave.org>
parents: 24876
diff changeset
109 -e "s|%OCTAVE_OCTFONTSDIR%|\"${octfontsdir}\"|" \
21398
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
110 -e "s|%OCTAVE_OCTINCLUDEDIR%|\"${octincludedir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
111 -e "s|%OCTAVE_OCTLIBDIR%|\"${octlibdir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
112 -e "s|%OCTAVE_OCTLOCALEDIR%|\"${octlocaledir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
113 -e "s|%OCTAVE_OCTTESTSDIR%|\"${octtestsdir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
114 -e "s|%OCTAVE_STARTUPFILEDIR%|\"${startupfiledir}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
115 -e "s|%OCTAVE_PREFIX%|\"${prefix}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
116 -e "s|%OCTAVE_API_VERSION%|\"${api_version}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
117 -e "s|%OCTAVE_RELEASE%|\"${OCTAVE_RELEASE}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
118 -e "s|%OCTAVE_TEXI_MACROS_FILE%|\"${texi_macros_file}\"|" \
7e8a410e6124 break generated file dependence on Makefile (bug #46063)
John W. Eaton <jwe@octave.org>
parents:
diff changeset
119 -e "s|%OCTAVE_VERSION%|\"${version}\"|"