summaryrefslogtreecommitdiffstats
path: root/src/conf_macros.m4
diff options
context:
space:
mode:
authorPetter Reinholdtsen <pere@hungry.com>2010-05-21 08:29:40 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-05-21 08:31:56 -0400
commitc8b9cf339e84576293113df914498a80ec1989dc (patch)
treefcd81a0e06a08cfe3ea1abfa95925730bb589fed /src/conf_macros.m4
parent19ce0003e32cde587e2e2115f431e86e0c9adf76 (diff)
downloadsssd_unused-c8b9cf339e84576293113df914498a80ec1989dc.tar.gz
sssd_unused-c8b9cf339e84576293113df914498a80ec1989dc.tar.xz
sssd_unused-c8b9cf339e84576293113df914498a80ec1989dc.zip
Remove bash-isms from configure macros
Diffstat (limited to 'src/conf_macros.m4')
-rw-r--r--src/conf_macros.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/src/conf_macros.m4 b/src/conf_macros.m4
index 4630f315..65de7fbd 100644
--- a/src/conf_macros.m4
+++ b/src/conf_macros.m4
@@ -123,7 +123,7 @@ AC_DEFUN([WITH_MANPAGES],
[],
with_manpages=yes
)
- if test x"$with_manpages" == xyes; then
+ if test x"$with_manpages" = xyes; then
HAVE_MANPAGES=1
AC_SUBST(HAVE_MANPAGES)
fi
@@ -167,7 +167,7 @@ AC_DEFUN([WITH_PYTHON_BINDINGS],
[],
with_python_bindings=yes
)
- if test x"$with_python_bindings" == xyes; then
+ if test x"$with_python_bindings" = xyes; then
HAVE_PYTHON_BINDINGS=1
AC_SUBST(HAVE_PYTHON_BINDINGS)
fi
@@ -183,7 +183,7 @@ AC_DEFUN([WITH_SELINUX],
[],
with_selinux=yes
)
- if test x"$with_selinux" == xyes; then
+ if test x"$with_selinux" = xyes; then
HAVE_SELINUX=1
AC_SUBST(HAVE_SELINUX)
AC_DEFINE_UNQUOTED(HAVE_SELINUX, 1, [Build with SELinux support])
@@ -212,7 +212,7 @@ AC_DEFUN([WITH_NSCD],
[],
with_nscd=yes
)
- if test x"$with_nscd" == xyes; then
+ if test x"$with_nscd" = xyes; then
AC_DEFINE_UNQUOTED(HAVE_NSCD, 1, [flush nscd cache after local domain operations])
fi
])
@@ -226,7 +226,7 @@ AC_DEFUN([WITH_SEMANAGE],
[],
with_semanage=yes
)
- if test x"$with_semanage" == xyes; then
+ if test x"$with_semanage" = xyes; then
HAVE_SEMANAGE=1
AC_SUBST(HAVE_SEMANAGE)
AC_DEFINE_UNQUOTED(HAVE_SEMANAGE, 1, [Build with SELinux support])