view doc/interpreter/find-docstring-files.sh @ 18953:bcbd309bf272 stable

doc: Fix quote character at beginning of External Code Interfaces chapter. * external.txi: Use regular dobule quote rather than smart quote which is not rendered by Texinfo.
author Rik <rik@octave.org>
date Wed, 23 Jul 2014 08:38:46 -0700
parents 741dbca67d80
children
line wrap: on
line source

#! /bin/sh

if [ $# -ne 1 ]; then
  echo "usage: find-docstring-files TOP-SRCDIR" 1>&2
  exit 1
fi

## if there is a file in the build directory tree, assume it is
## the file we are looking for.  Otherwise, get the one from the
## source tree.

if [ -f "../../scripts/DOCSTRINGS" ]; then
  echo "../../scripts/DOCSTRINGS"
else
  echo "$1/scripts/DOCSTRINGS"
fi

if [ -f "../../libinterp/DOCSTRINGS" ]; then
  echo "../../libinterp/DOCSTRINGS"
else
  echo "$1/libinterp/DOCSTRINGS"
fi