view doc/interpreter/find-docstring-files.sh @ 13017:aaf6fbb2512f stable

doc: Add cross references to "status of variables" in sections for predicates * matrix.txi: Cross reference to Status of Variables * numbers.txi: Ditto.
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Sat, 27 Aug 2011 13:37:31 -0500
parents 8d20fb66a0dc
children 2fc554ffbc28
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 teh 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 "../../src/DOCSTRINGS" ]; then
  echo "../../src/DOCSTRINGS"
else
  echo "$1/src/DOCSTRINGS"
fi