From: Eric Blake Date: Wed, 19 Nov 2014 19:13:14 +0000 (-0700) Subject: maint: use portable shell X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=aca0ae1faa163bbd60ee8df4b93ae870aa820746;p=libvirt.git maint: use portable shell Reported in https://bugzilla.redhat.com/show_bug.cgi?id=1165827; dash complains: checking for pkcheck... /usr/bin/pkcheck checking whether pkcheck supports uid value... yes ./configure: 63906: test: xno: unexpected operator checking for dtrace... no * configure.ac: Use '=' not '==' in test. Signed-off-by: Eric Blake --- diff --git a/configure.ac b/configure.ac index 5a670eb9e5..9fd44b2e26 100644 --- a/configure.ac +++ b/configure.ac @@ -1389,7 +1389,7 @@ AC_ARG_WITH([firewalld], if test "x$with_firewalld" = "xcheck" ; then with_firewalld=$with_dbus fi -if test "x$with_firewalld" == "xyes" ; then +if test "x$with_firewalld" = "xyes" ; then if test "x$with_dbus" != "xyes" ; then AC_MSG_ERROR([You must have dbus enabled for firewalld support]) fi