From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:46089) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gqfaa-0006Fc-Ab for qemu-devel@nongnu.org; Mon, 04 Feb 2019 09:51:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gqfTT-0005bB-8m for qemu-devel@nongnu.org; Mon, 04 Feb 2019 09:43:52 -0500 Received: from mail-qk1-f196.google.com ([209.85.222.196]:43748) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gqfTT-0005av-2A for qemu-devel@nongnu.org; Mon, 04 Feb 2019 09:43:51 -0500 Received: by mail-qk1-f196.google.com with SMTP id z18so28214qkj.10 for ; Mon, 04 Feb 2019 06:43:51 -0800 (PST) Date: Mon, 4 Feb 2019 09:43:48 -0500 From: "Michael S. Tsirkin" Message-ID: <20190204142638.27021-16-mst@redhat.com> References: <20190204142638.27021-1-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190204142638.27021-1-mst@redhat.com> Subject: [Qemu-devel] [PULL 15/25] contrib: compile vhost-user-blk tool by default List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Changpeng Liu , Stefan Hajnoczi , Stefano Garzarella , Gerd Hoffmann , Paolo Bonzini , Daniel =?utf-8?B?UC4gQmVycmFuZ8Op?= , Richard Henderson From: Changpeng Liu Signed-off-by: Changpeng Liu Reviewed-by: Stefan Hajnoczi Reviewed-by: Stefano Garzarella Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 31cf6f584d..5c619d4e03 100755 --- a/configure +++ b/configure @@ -5831,6 +5831,9 @@ if test "$want_tools" = "yes" ; then if [ "$posix" = "yes" ] && [ "$curl" = "yes" ]; then tools="elf2dmp $tools" fi + if [ "$linux" = "yes" ]; then + tools="vhost-user-blk\$(EXESUF) $tools" + fi fi if test "$softmmu" = yes ; then if test "$linux" = yes; then -- MST