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
diff --git a/functions b/functions
index 9022675..aaa00a4 100644
--- a/functions
+++ b/functions
@@ -1056,7 +1056,7 @@
# 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 $?
}