From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Price Date: Mon, 20 May 2013 12:37:10 +0100 Subject: [Cluster-devel] [PATCH 1/7] gfs2-utils build: Fix reporting lack of check Message-ID: <1369049836-8204-1-git-send-email-anprice@redhat.com> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Make configure.ac test the correct variable to conditionally warn of the absence of 'check'. Signed-off-by: Andrew Price --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6940d79..c8e52a3 100644 --- a/configure.ac +++ b/configure.ac @@ -278,4 +278,4 @@ AC_CONFIG_FILES([Makefile AC_OUTPUT -test x"$BUILD_TESTS" = x && AC_MSG_NOTICE([package 'check' not found; unit tests will not be built]) +test x"$have_check" = "xyes" || AC_MSG_NOTICE([package 'check' not found; unit tests will not be built]) -- 1.8.1.4