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 D5725A0A02; Thu, 14 Jan 2021 12:08:42 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0F95B1411C5; Thu, 14 Jan 2021 12:06:42 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 83FAC141190; Thu, 14 Jan 2021 12:06:32 +0100 (CET) IronPort-SDR: rM4qcCfXddNa+7ARwxHpw5g/cLEJuG9B5tPfungz/Yve8ICsxf+jr2qxN0jKnxNh+xlVqt2TEC O/bGIbV0arBw== X-IronPort-AV: E=McAfee;i="6000,8403,9863"; a="178498553" X-IronPort-AV: E=Sophos;i="5.79,347,1602572400"; d="scan'208";a="178498553" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2021 03:06:32 -0800 IronPort-SDR: 39oPIohgvXkIKL/7h/cX+HrwwkSpvVxP+DvsIlpE4Qw03CB21b9/Lzg6ziNEr4yhA6oyYQT5Zc YShFu6aP7Pvw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,347,1602572400"; d="scan'208";a="568139890" Received: from silpixa00399126.ir.intel.com ([10.237.222.4]) by orsmga005.jf.intel.com with ESMTP; 14 Jan 2021 03:06:31 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , stable@dpdk.org Date: Thu, 14 Jan 2021 11:06:02 +0000 Message-Id: <20210114110606.21142-17-bruce.richardson@intel.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20210114110606.21142-1-bruce.richardson@intel.com> References: <20210114110606.21142-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 16/20] app: fix extra include paths for app builds 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" The "includes" variable in the app/meson.build file was ignored when building the executable, meaning that apps couldn't pass additional include paths directly back. Fix this to align with drivers and libs. Fixes: fa036e70d794 ("app: generalize meson build") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson --- app/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/app/meson.build b/app/meson.build index eb74f215a3..b6f2a6f56e 100644 --- a/app/meson.build +++ b/app/meson.build @@ -60,6 +60,7 @@ foreach app:apps c_args: cflags, link_whole: link_libs, dependencies: dep_objs, + include_directories: includes, install_rpath: join_paths(get_option('prefix'), driver_install_path), install: true) -- 2.27.0