From c2d2f52bbdf7b83fbd74a7396c7380b6da9b2ae3 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Mon, 3 Dec 2012 10:02:40 -0500 Subject: [PATCH] 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 --- functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions b/functions index 9022675ad3..aaa00a49e1 100644 --- a/functions +++ b/functions @@ -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 $? }