annotate doc/interpreter/find-docstring-files.sh @ 14364:721a4a83cba6

test: Space out %!shared variable declaration for readability * pchip.m, ppval.m: Space out %!shared variable declaration for readability
author Rik <octave@nomad.inbox5.com>
date Tue, 14 Feb 2012 10:01:18 -0800
parents 8d20fb66a0dc
children 2fc554ffbc28
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9906
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 #! /bin/sh
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 if [ $# -ne 1 ]; then
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 echo "usage: find-docstring-files TOP-SRCDIR" 1>&2
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 exit 1
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 fi
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 ## if there is a file in teh build directory tree, assume it is
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 ## the file we are looking for. Otherwise, get the one from the
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 ## source tree.
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 if [ -f "../../scripts/DOCSTRINGS" ]; then
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 echo "../../scripts/DOCSTRINGS"
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 else
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 echo "$1/scripts/DOCSTRINGS"
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 fi
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 if [ -f "../../src/DOCSTRINGS" ]; then
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 echo "../../src/DOCSTRINGS"
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 else
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 echo "$1/src/DOCSTRINGS"
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 fi