From patchwork Mon Sep 18 07:46:45 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 9955633 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id F22D2601E9 for ; Mon, 18 Sep 2017 07:47:38 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E00141FFB7 for ; Mon, 18 Sep 2017 07:47:38 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D47BE28BBA; Mon, 18 Sep 2017 07:47:38 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id E660F1FFB7 for ; Mon, 18 Sep 2017 07:47:37 +0000 (UTC) Received: from localhost ([::1]:35098 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dtqmG-0001Hu-TJ for patchwork-qemu-devel@patchwork.kernel.org; Mon, 18 Sep 2017 03:47:36 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58965) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dtqlZ-0001Hj-8u for qemu-devel@nongnu.org; Mon, 18 Sep 2017 03:46:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dtqlW-0000xE-7Q for qemu-devel@nongnu.org; Mon, 18 Sep 2017 03:46:53 -0400 Received: from goliath.siemens.de ([192.35.17.28]:46657) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dtqlV-0000wl-TN for qemu-devel@nongnu.org; Mon, 18 Sep 2017 03:46:50 -0400 Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by goliath.siemens.de (8.15.2/8.15.2) with ESMTPS id v8I7kkl4007849 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 18 Sep 2017 09:46:46 +0200 Received: from md1f2u6c.ww002.siemens.net ([139.22.134.107]) by mail2.siemens.de (8.15.2/8.15.2) with ESMTP id v8I7kjaR016091; Mon, 18 Sep 2017 09:46:46 +0200 To: Eduardo Otubo , qemu-devel From: Jan Kiszka Message-ID: <77c55c6c-3397-5a32-6276-6b88f13fa531@siemens.com> Date: Mon, 18 Sep 2017 09:46:45 +0200 User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.8.1.12) Gecko/20080226 SUSE/2.0.0.12-1.1 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666 MIME-Version: 1.0 Content-Language: en-US X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 192.35.17.28 Subject: [Qemu-devel] [PATCH] seccomp: Fix build X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP From: Jan Kiszka vl.c includes seccomp.h, thus requires the related CFLAGS as well. Signed-off-by: Jan Kiszka --- Makefile.objs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.objs b/Makefile.objs index d9cf7ad791..4f1488d65d 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -61,7 +61,7 @@ bt-host.o-cflags := $(BLUEZ_CFLAGS) common-obj-y += dma-helpers.o common-obj-y += vl.o -vl.o-cflags := $(GPROF_CFLAGS) $(SDL_CFLAGS) +vl.o-cflags := $(GPROF_CFLAGS) $(SDL_CFLAGS) $(SECCOMP_CFLAGS) common-obj-y += tpm.o common-obj-$(CONFIG_SLIRP) += slirp/