From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 69402A0524; Thu, 4 Feb 2021 11:05:37 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4B8F0240665; Thu, 4 Feb 2021 11:05:37 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 4FF6224064D for ; Thu, 4 Feb 2021 11:05:35 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1612433134; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=iAGcNHcGJ9rzS5ibcPMMt4lTz8/k5JYtsl7Ajnp88x0=; b=ZYANu/Yl3JZVF5EP8A3grEHsuokikNBGVl1cZUZEvHIBxGNdjDjuwX5nJk0uejEJyrj8V8 EfSecM3VDiH1UfDww3JXgvAKeWRfs0erw6sIwZdoq/ZztV2mCoeL2YuS8Lk2HjWnCO9vVt yj8jxVr8n9rsBsVYJro2SXQ0BbPVwK0= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-539-ZA9t-PQcMzq8pgTgDsTBBQ-1; Thu, 04 Feb 2021 05:05:33 -0500 X-MC-Unique: ZA9t-PQcMzq8pgTgDsTBBQ-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id DB4AC1020C2B; Thu, 4 Feb 2021 10:05:31 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.161]) by smtp.corp.redhat.com (Postfix) with ESMTP id D582F722E4; Thu, 4 Feb 2021 10:05:30 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: konstantin.ananyev@intel.com, bruce.richardson@intel.com Date: Thu, 4 Feb 2021 11:05:20 +0100 Message-Id: <20210204100520.15414-2-david.marchand@redhat.com> In-Reply-To: <20210204100520.15414-1-david.marchand@redhat.com> References: <20210129203307.25123-1-david.marchand@redhat.com> <20210204100520.15414-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Subject: [dpdk-dev] [PATCH v2 2/2] builtools: remove build flag for header includes check X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Previous patch just removes the last case of direct inclusion of the generic/ headers. Signed-off-by: David Marchand --- buildtools/chkincs/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/buildtools/chkincs/meson.build b/buildtools/chkincs/meson.build index f345e87551..f28cfd3cd4 100644 --- a/buildtools/chkincs/meson.build +++ b/buildtools/chkincs/meson.build @@ -17,7 +17,6 @@ gen_c_files = generator(gen_c_file_for_header, arguments: ['@INPUT@', '@OUTPUT@']) cflags = machine_args -cflags += '-Wno-unused-function' # needed if we include generic headers cflags += '-DALLOW_EXPERIMENTAL_API' sources = files('main.c') -- 2.23.0