1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Fix sh standard conformance bug: Replace "test -e"

with "test -f".  Thanks to Alexander Klimov.
This commit is contained in:
Thien-Thi Nguyen 2001-03-25 18:40:28 +00:00
parent 62532db38d
commit c52b482324

View file

@ -33,7 +33,7 @@ else
fi
# documentation searching ignores GUILE_LOAD_PATH.
if [ ! -e guile-procedures.txt ]; then
if [ ! -f guile-procedures.txt ] ; then
ln -s libguile/guile-procedures.txt .
fi