aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-11-18 01:08:40 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-11-18 01:08:40 +0000
commit2179c37bffccdd6ad4bd4fb5040e87da187f1ecf (patch)
tree51043dfbd7219240489e9fbbe68b18ecc94d9593
parentb6027a4454e8fd993dfbd4cbc201649b3897f1f2 (diff)
downloadfetchmail-2179c37bffccdd6ad4bd4fb5040e87da187f1ecf.tar.gz
fetchmail-2179c37bffccdd6ad4bd4fb5040e87da187f1ecf.tar.bz2
fetchmail-2179c37bffccdd6ad4bd4fb5040e87da187f1ecf.zip
Portability fix: Solaris' /bin/sh does not support if ! test ...,
factor the ! negation into the test. svn path=/trunk/; revision=4460
-rw-r--r--m4-local/ac_ma_search_package.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4-local/ac_ma_search_package.m4 b/m4-local/ac_ma_search_package.m4
index 5f3c8b11..f2af9424 100644
--- a/m4-local/ac_ma_search_package.m4
+++ b/m4-local/ac_ma_search_package.m4
@@ -62,7 +62,7 @@ if test "${with_$1}" != no ; then
$1_libdir=$i/lib
fi
- if ! test -f "${$1_include}/$5" -a -d "${$1_libdir}" ; then
+ if test ! -f "${$1_include}/$5" -o ! -d "${$1_libdir}" ; then
continue
fi