commit a46fd13ba98fe1d31d24787f12a5b944c5109b80
parent 146de31dc6176fe78d2d84eb74ed5f4f8abfeed4
Author: ukai <ukai>
Date: Mon, 9 Sep 2002 13:50:44 +0000
[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>
Diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,5 +1,10 @@
2002-09-09 Hironori SAKAMOTO <h-saka@lsi.nec.co.jp>
+ * [w3m-dev 03298] [ -f instead of [ -e (configure)
+ * configure: use test -f instead of test -e
+
+2002-09-09 Hironori SAKAMOTO <h-saka@lsi.nec.co.jp>
+
* [w3m-dev 03297] TERM=mlterm
* terms.c (w3m_term_info_list): add mlterm
diff --git a/configure b/configure
@@ -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