Mercurial > hg > octave-nkf
annotate doc/interpreter/find-docstring-files.sh @ 20279:db30302bedc3
Added tag rc-4-0-0-3 for changeset 065f933ef083
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 10 Apr 2015 14:41:21 -0400 |
parents | 741dbca67d80 |
children | c3c1fb44f9b5 |
rev | line source |
---|---|
9906 | 1 #! /bin/sh |
2 | |
3 if [ $# -ne 1 ]; then | |
4 echo "usage: find-docstring-files TOP-SRCDIR" 1>&2 | |
5 exit 1 | |
6 fi | |
7 | |
16192
741dbca67d80
find-docstring-files.sh: Fix typo in comment.
Rik <rik@octave.org>
parents:
15195
diff
changeset
|
8 ## if there is a file in the build directory tree, assume it is |
9906 | 9 ## the file we are looking for. Otherwise, get the one from the |
10 ## source tree. | |
11 | |
12 if [ -f "../../scripts/DOCSTRINGS" ]; then | |
13 echo "../../scripts/DOCSTRINGS" | |
14 else | |
15 echo "$1/scripts/DOCSTRINGS" | |
16 fi | |
17 | |
15195 | 18 if [ -f "../../libinterp/DOCSTRINGS" ]; then |
19 echo "../../libinterp/DOCSTRINGS" | |
9906 | 20 else |
15195 | 21 echo "$1/libinterp/DOCSTRINGS" |
9906 | 22 fi |