On Thu, 2017-10-12 at 04:58 +0200, Thomas Monjalon wrote: > 05/09/2017 22:51, luca.bocca...@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?
Yes, you are right, good catch. I'll add a dependency: build: _preinstall Which should take care of it, retest and send a new version. -- Kind regards, Luca Boccassi