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:
parent
62532db38d
commit
c52b482324
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue