From c8b9cf339e84576293113df914498a80ec1989dc Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Fri, 21 May 2010 08:29:40 -0400 Subject: Remove bash-isms from configure macros --- src/external/krb5.m4 | 2 +- src/external/platform.m4 | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'src/external') diff --git a/src/external/krb5.m4 b/src/external/krb5.m4 index 84bb44174..39c2cdfd3 100644 --- a/src/external/krb5.m4 +++ b/src/external/krb5.m4 @@ -58,5 +58,5 @@ AC_CHECK_HEADER([krb5/locate_plugin.h], [have_locate_plugin=no] [AC_MSG_NOTICE([Kerberos locator plugin cannot be build])]) AM_CONDITIONAL([BUILD_KRB5_LOCATOR_PLUGIN], - [test x$have_locate_plugin == xyes -a x$build_locator == xyes]) + [test x$have_locate_plugin = xyes -a x$build_locator = xyes]) diff --git a/src/external/platform.m4 b/src/external/platform.m4 index b7899b4b4..0bc221a2f 100644 --- a/src/external/platform.m4 +++ b/src/external/platform.m4 @@ -3,10 +3,10 @@ AC_ARG_WITH([os], ) osname="" if test x"$with_os" != x ; then - if test x"$with_os" == xfedora -o \ - x"$with_os" == xredhat -o \ - x"$with_os" == xsuse -o \ - x"$with_os" == xdebian ; then + if test x"$with_os" = xfedora || \ + test x"$with_os" = xredhat || \ + test x"$with_os" = xsuse || \ + test x"$with_os" = xdebian ; then osname=$with_os else AC_MSG_ERROR([Illegal value -$with_os- for option --with-os]) @@ -27,10 +27,10 @@ if test x"$osname" = x ; then AC_MSG_NOTICE([Detected operating system type: $osname]) fi -AM_CONDITIONAL([HAVE_FEDORA], [test x"$osname" == xfedora]) -AM_CONDITIONAL([HAVE_REDHAT], [test x"$osname" == xredhat]) -AM_CONDITIONAL([HAVE_SUSE], [test x"$osname" == xsuse]) -AM_CONDITIONAL([HAVE_DEBIAN], [test x"$osname" == xdebian]) +AM_CONDITIONAL([HAVE_FEDORA], [test x"$osname" = xfedora]) +AM_CONDITIONAL([HAVE_REDHAT], [test x"$osname" = xredhat]) +AM_CONDITIONAL([HAVE_SUSE], [test x"$osname" = xsuse]) +AM_CONDITIONAL([HAVE_DEBIAN], [test x"$osname" = xdebian]) AC_CHECK_MEMBERS([struct ucred.pid, struct ucred.uid, struct ucred.gid], , , [[#define _GNU_SOURCE -- cgit