From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v7 6/6] mk: install symlinks before build step Date: Thu, 12 Oct 2017 04:58:09 +0200 Message-ID: <8436144.K3qalYn0E0@xps> References: <20170905205159.8606-7-luca.boccassi@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, ferruh.yigit@intel.com To: luca.boccassi@gmail.com Return-path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 43099DE0 for ; Thu, 12 Oct 2017 04:58:10 +0200 (CEST) In-Reply-To: <20170905205159.8606-7-luca.boccassi@gmail.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 05/09/2017 22:51, luca.boccassi@gmail.com: > .PHONY: install > +ifeq ($(SYMLINK-FILES-y),) > install: build _postinstall > +else > +install: _preinstall build _postinstall > +endif I think you cannot be sure that "_preinstall" will be finished before the "build" target starts in parallel make. Am I missing something?