Fix qpid support on Fedora.

The new qpid_is_supported function returned the opposite value from what
it was supposed to.  It returned success for the platforms where qpid is
not supported.

Change-Id: I0ceaae1dddaa6192657926834c6eb8006925f0cf
This commit is contained in:
Russell Bryant
2012-12-03 10:02:40 -05:00
parent 1a7bbd255f
commit c2d2f52bbd

@ -1056,7 +1056,7 @@ function qpid_is_supported() {
# Qpid was introduced to Ubuntu in precise, disallow it on oneiric; it is
# not in openSUSE either right now.
[[ "$DISTRO" = "oneiric" ]] || is_suse
( ! ([[ "$DISTRO" = "oneiric" ]] || is_suse) )
return $?
}