1#! /bin/sh
2
3########################################################################
4##
5## Copyright (C) 2016-2021 The Octave Project Developers
6##
7## See the file COPYRIGHT.md in the top-level directory of this
8## distribution or <https://octave.org/copyright/>.
9##
10## This file is part of Octave.
11##
12## Octave is free software: you can redistribute it and/or modify it
13## under the terms of the GNU General Public License as published by
14## the Free Software Foundation, either version 3 of the License, or
15## (at your option) any later version.
16##
17## Octave is distributed in the hope that it will be useful, but
18## WITHOUT ANY WARRANTY; without even the implied warranty of
19## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20## GNU General Public License for more details.
21##
22## You should have received a copy of the GNU General Public License
23## along with Octave; see the file COPYING.  If not, see
24## <https://www.gnu.org/licenses/>.
25##
26########################################################################
27
28: ${SED=@SED@}
29
30DEFAULT_TERMINAL_FONT="@DEFAULT_TERMINAL_FONT@"
31DEFAULT_TERMINAL_FONT_SIZE="@DEFAULT_TERMINAL_FONT_SIZE@"
32
33$SED \
34  -e "s|%DEFAULT_TERMINAL_FONT%|${DEFAULT_TERMINAL_FONT}|" \
35  -e "s|%DEFAULT_TERMINAL_FONT_SIZE%|${DEFAULT_TERMINAL_FONT_SIZE}|"
36