diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-11-18 01:08:40 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-11-18 01:08:40 +0000 |
commit | 2179c37bffccdd6ad4bd4fb5040e87da187f1ecf (patch) | |
tree | 51043dfbd7219240489e9fbbe68b18ecc94d9593 /m4-local | |
parent | b6027a4454e8fd993dfbd4cbc201649b3897f1f2 (diff) | |
download | fetchmail-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
Diffstat (limited to 'm4-local')
-rw-r--r-- | m4-local/ac_ma_search_package.m4 | 2 |
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 |