From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 87648A04DD; Tue, 20 Oct 2020 12:31:33 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 02608AC90; Tue, 20 Oct 2020 12:31:31 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by dpdk.org (Postfix) with ESMTP id C17A4AA0C for ; Tue, 20 Oct 2020 12:31:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1603189885; 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: in-reply-to:in-reply-to:references:references; bh=07H85sPw7aEhug5alwVWTg+VHR8zarqf1uqkjeGVYjs=; b=hhwJBpqt4Kpi2Uf+y4hBAHGLemIDO0NYxuqwydUW4kcHT24HtCaYRj6tiQpvabh1gY02Qw Zz/o7e8ECZRV4mOVjG6rrqbuqjn2k4n0r8TagrKbp/e4ctrIKFmykM2wdWoKwoD9UI5yn2 y+5RiNx0LBWrK+5VNwwwIz/ypDKb8Pg= Received: from mail-vk1-f199.google.com (mail-vk1-f199.google.com [209.85.221.199]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-450-nNH8wBjyPHOimxoBGtOZgw-1; Tue, 20 Oct 2020 06:31:23 -0400 X-MC-Unique: nNH8wBjyPHOimxoBGtOZgw-1 Received: by mail-vk1-f199.google.com with SMTP id j134so407385vke.1 for ; Tue, 20 Oct 2020 03:31:23 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=07H85sPw7aEhug5alwVWTg+VHR8zarqf1uqkjeGVYjs=; b=Z7TyTafSxZBt2Jvy+tE4qG/iXNYI4Vwla66d/WmO7G8lkNiqIhPea7s3MRI6M4QQfV fljqGCCpKn1EYbDJtTrQOqSj/wN0MIMuYad4/VrfjctXRRpPklU/dejRF4jJu5Pgyfyi skiIJZF4gJ/Q65uVFw9Zi/L5/OZ044CWtkT0zsRBMtI+FZO35hfuix4EqoEmDPKaSgyC y/UcB0uZWSe7gINURelzfk4hPKX0FzEzgB2LOxh+efEZVfLp6s4ZDM0u9Y+om/7IIXs9 R+62n8dMa+QdN2APZJSS6ZXJCPTuGlBRMD4ce/7rSFNh8qnv4U5AZD1t1Ff4xTmHe8Ea 3Vsw== X-Gm-Message-State: AOAM532Z4NwAoyuLNao2cndep5MACdJDiH/yNgxYnM3OMbgVyIZ78f4e uf73oHkxJKtKsehLfZUEOInUDRABEkzfDkTAKcuGzg9iWzRc0kqu6w/8IThUWl/S1BzaB4wC30w Lng8ybVQiDhlVI2eblVA= X-Received: by 2002:a67:f954:: with SMTP id u20mr1075912vsq.5.1603189883144; Tue, 20 Oct 2020 03:31:23 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyxNat/HhQcO44tlhXW1rojGfl1JGuQQ3OG56uYhuZKMGLchf1+hFU0zmCHalLWPqoTuvb0LKhFLWXnMNzRu4s= X-Received: by 2002:a67:f954:: with SMTP id u20mr1075909vsq.5.1603189882961; Tue, 20 Oct 2020 03:31:22 -0700 (PDT) MIME-Version: 1.0 References: <20201020091743.192709-1-bruce.richardson@intel.com> In-Reply-To: From: David Marchand Date: Tue, 20 Oct 2020 12:31:12 +0200 Message-ID: To: Bruce Richardson Cc: dev Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] config: fix kni build X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" On Tue, Oct 20, 2020 at 12:03 PM David Marchand wrote: > > On Tue, Oct 20, 2020 at 11:19 AM Bruce Richardson > wrote: > > > > When building kernel modules such as kni, the "config" directory is not > > passed as a standard path in the EXTRA_CFLAGS value, meaning that the > > rte_compatibility_defines.h is not found from rte_config.h. However, since > > both headers are in the same directory, we can just use quotes rather than > > angle-brackets to ensure the second header is always found if the first is. > > > > Fixes: b0b672aeadaa ("build: add defines for compatibility with make build") > > > > Signed-off-by: Bruce Richardson > Acked-by: David Marchand Applied, thanks. -- David Marchand