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 580F4A04B5 for ; Thu, 29 Oct 2020 13:26:13 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 45AF0CAB5; Thu, 29 Oct 2020 13:26:12 +0100 (CET) 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 A2E46CAB5 for ; Thu, 29 Oct 2020 13:26:09 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1603974368; 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; bh=Hu1FRg3uaHyxScMWwxl16dWAVsZ4rrJEPk1l87ZbI30=; b=B03Gu8ExZs40nQTS6SrqrQ/YgXRXDE0oCurN0GJsZ5+t2dgQXsr84IC589XvS3se3y5MDN Me9LWrmTX7gjRO9wpOftP3xktya20cE+G9lkbCf1OBNRd3MM0PHolYCp3k8vQSCxMSvBy9 dAHwhzRReR52YkYSg/bYsNiC8uBJWKE= 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-344-IMDX0S1qOimTg5O4FmnnVw-1; Thu, 29 Oct 2020 08:26:06 -0400 X-MC-Unique: IMDX0S1qOimTg5O4FmnnVw-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id E0388106BB39; Thu, 29 Oct 2020 12:26:04 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.192.40]) by smtp.corp.redhat.com (Postfix) with ESMTP id 506845578B; Thu, 29 Oct 2020 12:26:03 +0000 (UTC) From: David Marchand To: ktraynor@redhat.com, alialnu@nvidia.com Cc: stable@dpdk.org, thomas@monjalon.net, bruce.richardson@intel.com Date: Thu, 29 Oct 2020 13:25:50 +0100 Message-Id: <20201029122550.11044-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 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-stable] [PATCH 18.11] eal: fix parallel build X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Parallel build is broken as linuxapp/freebsd have lost the dependency on installing common headers. The original commit in the main branch was at fault, but it got hidden by the commit a083f8cc7746 ("eal: move OS-specific sub-directories"). Fixes: 4a2be43591df ("eal: remove useless makefiles") Signed-off-by: David Marchand --- lib/librte_eal/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_eal/Makefile b/lib/librte_eal/Makefile index fd56a69ba3..263c2d0664 100644 --- a/lib/librte_eal/Makefile +++ b/lib/librte_eal/Makefile @@ -5,8 +5,8 @@ include $(RTE_SDK)/mk/rte.vars.mk DIRS-y += common DIRS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += linuxapp/eal -DEPDIRS-linuxapp := common +DEPDIRS-linuxapp/eal := common DIRS-$(CONFIG_RTE_EXEC_ENV_BSDAPP) += bsdapp/eal -DEPDIRS-bsdapp := common +DEPDIRS-bsdapp/eal := common include $(RTE_SDK)/mk/rte.subdir.mk -- 2.23.0