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 84D9FA0544; Fri, 2 Sep 2022 10:45:51 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DFBC440C35; Fri, 2 Sep 2022 10:45:49 +0200 (CEST) Received: from mta-64-226.siemens.flowmailer.net (mta-64-226.siemens.flowmailer.net [185.136.64.226]) by mails.dpdk.org (Postfix) with ESMTP id 0A76C40C35 for ; Fri, 2 Sep 2022 10:45:49 +0200 (CEST) Received: by mta-64-226.siemens.flowmailer.net with ESMTPSA id 20220902084548f2dfea3f7715a0c9a4 for ; Fri, 02 Sep 2022 10:45:48 +0200 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; s=fm1; d=siemens.com; i=felix.moessbauer@siemens.com; h=Date:From:Subject:To:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:Cc:References:In-Reply-To; bh=3v6DfaHaMrYWBJ0dcJhtRTaqRvba0KVE9kv5Xx1Eikc=; b=AjJInlVg/oxvM9EMDp6H+/vqTzjbSHvaxDOe+jMRhZqyOrfw3WRc3sNZCUIKppDdsyGdSN xuw7lCVLavHBDVE7Iyw5Cha3O9UDK6WmTGUq0LPZFbHmiiwrSR/s+BYcyYRUhZeb/ZsmRa8S G9YAbMSiOBgO26mHYBQ1+sj3i/b4k=; From: Felix Moessbauer To: dev@dpdk.org Cc: henning.schild@siemens.com, jan.kiszka@siemens.com, thomas@monjalon.net, Felix Moessbauer , Bruce Richardson Subject: [PATCH v6 1/2] Fix build of apps with external dependencies Date: Fri, 2 Sep 2022 10:45:32 +0200 Message-Id: <20220902084533.675698-2-felix.moessbauer@siemens.com> In-Reply-To: <20220902084533.675698-1-felix.moessbauer@siemens.com> References: <20220902084533.675698-1-felix.moessbauer@siemens.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Flowmailer-Platform: Siemens Feedback-ID: 519:519-72506:519-21489:flowmailer 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 This fix initializes the dependency object with the external dependency list. Previously, the external dependencies were just ignored. Signed-off-by: Felix Moessbauer Acked-by: Bruce Richardson --- app/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/meson.build b/app/meson.build index 93d8c15032..0ea04cadeb 100644 --- a/app/meson.build +++ b/app/meson.build @@ -44,7 +44,7 @@ foreach app:apps subdir(name) if build - dep_objs = [] + dep_objs = ext_deps foreach d:deps var_name = get_option('default_library') + '_rte_' + d if not is_variable(var_name) -- 2.30.2