From d9d9db0f8000fec31a0996c602a0fb76b4c2a548 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 28 Mar 2013 12:52:17 -0600 Subject: [PATCH] Fix build if just one of libverbs or librdma is installed Signed-off-by: Jens Axboe --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 76da4ba5..836d7ade 100755 --- a/configure +++ b/configure @@ -1017,7 +1017,7 @@ fi if test "$sfaa" = "yes" ; then output_sym "CONFIG_SFAA" fi -if test "$libverbs" = "yes" -o "rdmacm" = "yes" ; then +if test "$libverbs" = "yes" -a "rdmacm" = "yes" ; then output_sym "CONFIG_RDMA" fi if test "$clock_gettime" = "yes" ; then -- 2.25.1