[w3m-dev 03298] [ -f instead of [ -e (configure)

* configure: use test -f instead of test -e
From: Hironori SAKAMOTO <h-saka@lsi.nec.co.jp>
This commit is contained in:
Fumitoshi UKAI
2002-09-09 13:50:44 +00:00
parent 22f81482ba
commit c168a455ab
2 changed files with 8 additions and 3 deletions

4
configure vendored
View File

@@ -1,5 +1,5 @@
#!/bin/sh
# $Id: configure,v 1.74 2002/09/09 13:48:11 ukai Exp $
# $Id: configure,v 1.75 2002/09/09 13:50:44 ukai Exp $
# Configuration.
#
@@ -2056,7 +2056,7 @@ EOF
else
for tlibdir in /usr/local/v6/lib /usr/local/lib /usr/lib $prefix/lib
do
if [ -e $tlibdir/libinet6.a ]; then
if [ -f $tlibdir/libinet6.a ]; then
if [ "$tlibdir" != "/usr/lib" ]; then
v6lib="-L$tlibdir"
fi