]> xenbits.xensource.com Git - libvirt.git/commitdiff
maint: use portable shell
authorEric Blake <eblake@redhat.com>
Wed, 19 Nov 2014 19:13:14 +0000 (12:13 -0700)
committerEric Blake <eblake@redhat.com>
Wed, 19 Nov 2014 19:13:14 +0000 (12:13 -0700)
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 <eblake@redhat.com>
configure.ac

index 5a670eb9e558a53dc70308a9a8a6a6129eb7933b..9fd44b2e267a43318d8adc62cee8a9083a877676 100644 (file)
@@ -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