From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50311) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TwVKH-0004fn-Rf for qemu-devel@nongnu.org; Sat, 19 Jan 2013 05:07:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TwVKG-0005wH-MX for qemu-devel@nongnu.org; Sat, 19 Jan 2013 05:07:01 -0500 Received: from mail-ea0-f177.google.com ([209.85.215.177]:42819) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TwVKG-0005w3-FJ for qemu-devel@nongnu.org; Sat, 19 Jan 2013 05:07:00 -0500 Received: by mail-ea0-f177.google.com with SMTP id n13so1757399eaa.22 for ; Sat, 19 Jan 2013 02:06:59 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Sat, 19 Jan 2013 11:06:46 +0100 Message-Id: <1358590008-1681-3-git-send-email-pbonzini@redhat.com> In-Reply-To: <1358590008-1681-1-git-send-email-pbonzini@redhat.com> References: <1358590008-1681-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 2/4] build: use -$(CONFIG_SECCOMP) instead of ifeq List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, afaerber@suse.de Signed-off-by: Paolo Bonzini --- Makefile.objs | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index 3548f9b..3bdb248 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -80,11 +80,7 @@ common-obj-$(CONFIG_SLIRP) += slirp/ common-obj-y += backends/ -###################################################################### -# libseccomp -ifeq ($(CONFIG_SECCOMP),y) -common-obj-y += qemu-seccomp.o -endif +common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o common-obj-$(CONFIG_SMARTCARD_NSS) += $(libcacard-y) -- 1.7.1