summaryrefslogtreecommitdiff
path: root/check-guile.in
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2001-03-25 18:40:28 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2001-03-25 18:40:28 +0000
commitc52b482324ddf1e7b5ac458ad3cbdf4ce28e1a4b (patch)
tree9caf82cfefda3872e6ea2f1776280b683e3fb689 /check-guile.in
parent62532db38d14cdf3d9c99d495a7a28126755808a (diff)
downloadguile-c52b482324ddf1e7b5ac458ad3cbdf4ce28e1a4b.tar.gz
Fix sh standard conformance bug: Replace "test -e"
with "test -f". Thanks to Alexander Klimov.
Diffstat (limited to 'check-guile.in')
-rw-r--r--check-guile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/check-guile.in b/check-guile.in
index 645755665..14cd94421 100644
--- a/check-guile.in
+++ b/check-guile.in
@@ -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