Mercurial > hg > octave-nkf
view doc/interpreter/find-docstring-files.sh @ 18203:adbbacce8aaf
find load file in private directories (bug #35697)
* load-path.cc (find_private_file): New static function.
(load_path::do_find_file): Use it.
* load-save.cc (find_file_to_load): Include file name in warning.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 03 Jan 2014 14:34:47 -0500 |
parents | 741dbca67d80 |
children | c3c1fb44f9b5 |
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