annotate build-aux/find-files-with-tests.sh @ 31191:bb9d776eafac stable

Fix wrong color in PDF printout of some latex strings (bug #62884) * octave-svgconvert (draw): For "rect" elements only set brush color if necessary and eventually restore to previous color.
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Sun, 14 Aug 2022 18:24:07 +0200
parents 796f54d4ddbf
children 597f3ee61a48
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16023
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 #! /bin/sh
29357
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
2
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
3 ########################################################################
29357
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
4 ##
30564
796f54d4ddbf update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
5 ## Copyright (C) 2013-2022 The Octave Project Developers
29357
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
6 ##
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
7 ## See the file COPYRIGHT.md in the top-level directory of this
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
8 ## distribution or <https://octave.org/copyright/>.
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
9 ##
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
10 ## This file is part of Octave.
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
11 ##
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
12 ## Octave is free software: you can redistribute it and/or modify it
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
13 ## under the terms of the GNU General Public License as published by
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
14 ## the Free Software Foundation, either version 3 of the License, or
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
15 ## (at your option) any later version.
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
16 ##
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
17 ## Octave is distributed in the hope that it will be useful, but
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
18 ## WITHOUT ANY WARRANTY; without even the implied warranty of
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
19 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
20 ## GNU General Public License for more details.
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
21 ##
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
22 ## You should have received a copy of the GNU General Public License
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
23 ## along with Octave; see the file COPYING. If not, see
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
24 ## <https://www.gnu.org/licenses/>.
bbbe4dcc7200 use the same comment style for copyright headers in .m files and shell scripts
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
25 ##
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
26 ########################################################################
16023
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 set -e
21277
1bca6c72d2b1 maint: Use consistent coding style for build helper shell scripts
Mike Miller <mtmiller@octave.org>
parents: 21276
diff changeset
29
16132
43e6415393ff build: check for grep in configure and then use it in build process.
Rik <rik@octave.org>
parents: 16023
diff changeset
30 GREP=${GREP:-grep}
16023
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 SED=${SED:-sed}
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 srcdir="$1"
21277
1bca6c72d2b1 maint: Use consistent coding style for build helper shell scripts
Mike Miller <mtmiller@octave.org>
parents: 21276
diff changeset
34 if [ "$1" ]; then
1bca6c72d2b1 maint: Use consistent coding style for build helper shell scripts
Mike Miller <mtmiller@octave.org>
parents: 21276
diff changeset
35 shift
1bca6c72d2b1 maint: Use consistent coding style for build helper shell scripts
Mike Miller <mtmiller@octave.org>
parents: 21276
diff changeset
36 fi
16023
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 for arg
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39 do
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 if [ -f "$arg" ]; then
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41 file="$arg"
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
42 else
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
43 file="$srcdir/$arg"
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
44 fi
21276
3b4bb843ffcd maint: Ensure source files exist when searching for patterns during build
Mike Miller <mtmiller@octave.org>
parents: 16132
diff changeset
45 if [ -f "$file" ]; then
3b4bb843ffcd maint: Ensure source files exist when searching for patterns during build
Mike Miller <mtmiller@octave.org>
parents: 16132
diff changeset
46 if [ "`$GREP -l '^%!' $file`" ]; then
3b4bb843ffcd maint: Ensure source files exist when searching for patterns during build
Mike Miller <mtmiller@octave.org>
parents: 16132
diff changeset
47 echo "$file" | $SED "s,\\$srcdir/,,"
3b4bb843ffcd maint: Ensure source files exist when searching for patterns during build
Mike Miller <mtmiller@octave.org>
parents: 16132
diff changeset
48 fi
16023
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
49 fi
98fc95793699 missing file for commit 5b2126a8c84f
John W. Eaton <jwe@octave.org>
parents:
diff changeset
50 done