From patchwork Fri Dec 21 16:05:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 207859 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 65EE22C0094 for ; Sat, 22 Dec 2012 04:16:34 +1100 (EST) Received: from localhost ([::1]:60041 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tm587-0007Y6-FV for incoming@patchwork.ozlabs.org; Fri, 21 Dec 2012 11:07:23 -0500 Received: from eggs.gnu.org ([208.118.235.92]:55271) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tm577-00052e-1z for qemu-devel@nongnu.org; Fri, 21 Dec 2012 11:06:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tm571-0006nS-K3 for qemu-devel@nongnu.org; Fri, 21 Dec 2012 11:06:20 -0500 Received: from mail-ie0-f179.google.com ([209.85.223.179]:60927) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tm571-0006nM-Et for qemu-devel@nongnu.org; Fri, 21 Dec 2012 11:06:15 -0500 Received: by mail-ie0-f179.google.com with SMTP id k14so6427907iea.38 for ; Fri, 21 Dec 2012 08:06:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=wv16N3pfvAG1AgQWzhkAi158agBpBsIiPdrzuYVE+10=; b=ZVT5fEsOxYqiBTHRJlP6AoW8obJJ6WvgYptoaS60Cg5V2elnySQX7AnwJe7bIdvCSe +sWIh7b6p97xu+/j5XuGW1oVztbM4ZEQy4rTPOBnDDuOuUfhQUsa1Q7QBscZcQUPivVz mfoPbWgp056K/3lcze8E55JstuwFpTcPSIHo8zpihTMHPeE/s8QbWfmKR40+SJKU/37k gkojkqGJhCaiaBIFb1F1FRQF1ER0HJdOi2joW4oa7kgXX529G7uf/xgWh+2wsSeySphi Wtz8WfnEv98jOhaf1/2y8BEmFmSPBvzukDmZ8mVPJUGKhRhxeGppqMf53Oc8XWJrMGKK 4AUQ== X-Received: by 10.42.94.8 with SMTP id z8mr12084543icm.36.1356105975022; Fri, 21 Dec 2012 08:06:15 -0800 (PST) Received: from yakj.usersys.redhat.com (93-34-179-137.ip50.fastwebnet.it. [93.34.179.137]) by mx.google.com with ESMTPS id u4sm9757244igw.6.2012.12.21.08.06.12 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 21 Dec 2012 08:06:14 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Fri, 21 Dec 2012 17:05:28 +0100 Message-Id: <1356105948-13216-8-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.8.0.2 In-Reply-To: <1356105948-13216-1-git-send-email-pbonzini@redhat.com> References: <1356105948-13216-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.223.179 Cc: alevy@redhat.com, vilanova@ac.upc.edu, afaerber@suse.de Subject: [Qemu-devel] [PATCH 07/27] libcacard: fix missing symbol in libcacard.so 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 From: Alon Levy Before patch: $ make libcacard.la $ nm ./libcacard/.libs/libcacard.so.0.0.0 | grep " U " | \ egrep -v "(g_)|(GLIBC)|(SECMOD)|(PK11)|(CERT)|(NSS)|(PORT)|(PR)" U error_set Signed-off-by: Alon Levy Signed-off-by: Paolo Bonzini --- libcacard/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libcacard/Makefile b/libcacard/Makefile index 34d503b..08a47e0 100644 --- a/libcacard/Makefile +++ b/libcacard/Makefile @@ -7,7 +7,7 @@ libcacard_includedir=$(includedir)/cacard $(call set-vpath, $(SRC_PATH)) # objects linked into a shared library, built with libtool with -fPIC if required -QEMU_OBJS=$(oslib-obj-y) qemu-timer-common.o $(trace-obj-y) $(stub-obj-y) +QEMU_OBJS=$(oslib-obj-y) qemu-timer-common.o error.o $(trace-obj-y) $(stub-obj-y) QEMU_OBJS_LIB=$(patsubst %.o,%.lo,$(QEMU_OBJS)) # libtool will build the .o files, too