From patchwork Thu Sep 13 07:31:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans de Goede X-Patchwork-Id: 183526 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 2DD722C00AC for ; Thu, 13 Sep 2012 17:30:42 +1000 (EST) Received: from localhost ([::1]:53169 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TC3sl-0006a2-Uz for incoming@patchwork.ozlabs.org; Thu, 13 Sep 2012 03:30:39 -0400 Received: from eggs.gnu.org ([208.118.235.92]:58168) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TC3sb-0006Zw-Dc for qemu-devel@nongnu.org; Thu, 13 Sep 2012 03:30:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TC3sX-0001P1-5k for qemu-devel@nongnu.org; Thu, 13 Sep 2012 03:30:29 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47647) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TC3sW-0001Nu-TP for qemu-devel@nongnu.org; Thu, 13 Sep 2012 03:30:25 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q8D7UGCx014441 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 13 Sep 2012 03:30:17 -0400 Received: from shalem.localdomain.com (vpn1-5-130.ams2.redhat.com [10.36.5.130]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q8D7UE6a017548; Thu, 13 Sep 2012 03:30:15 -0400 From: Hans de Goede To: Gerd Hoffmann Date: Thu, 13 Sep 2012 09:31:29 +0200 Message-Id: <1347521489-1545-1-git-send-email-hdegoede@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: Hans de Goede , qemu-devel@nongnu.org, Aurelien Jarno Subject: [Qemu-devel] [PATCH] configure: Fix "configure: usbredir fixes" to not break softmmu builds X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Feel free to merge this into the original commit at that is not upstream yet. Signed-off-by: Hans de Goede CC: Aurelien Jarno --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 1854b0b..d63530a 100755 --- a/configure +++ b/configure @@ -2770,7 +2770,7 @@ if test "$usb_redir" != "no" ; then usb_redir_cflags=$($pkg_config --cflags libusbredirparser 2>/dev/null) usb_redir_libs=$($pkg_config --libs libusbredirparser 2>/dev/null) QEMU_CFLAGS="$QEMU_CFLAGS $usb_redir_cflags" - libs_softmmu="$LIBS $usb_redir_libs" + libs_softmmu="$libs_softmmu $usb_redir_libs" else if test "$usb_redir" = "yes"; then feature_not_found "usb-redir"