Re: [dpdk-dev] [PATCH v1] mk: support building with renamed makefile

2018-02-05 Thread Olivier Matz
On Mon, Jan 22, 2018 at 10:59:05AM +, Marko Kovacevic wrote: > The build system made a recursive call to "make" after > creating the build directory. This recursive call used > the hard-coded filename "Makefile", which prevented > builds from working if the file was renamed and make > called us

Re: [dpdk-dev] [PATCH v1] mk: support building with renamed makefile

2018-01-30 Thread Thomas Monjalon
> > The build system made a recursive call to "make" after creating the build > > directory. This recursive call used the hard-coded filename "Makefile", > > which > > prevented builds from working if the file was renamed and make called using > > "make -f". Taking the filename from MAKEFILES_LIST

Re: [dpdk-dev] [PATCH v1] mk: support building with renamed makefile

2018-01-29 Thread Varghese, Vipin
> -Original Message- > From: Kovacevic, Marko > Sent: Monday, January 22, 2018 4:29 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; Varghese, Vipin ; > Kovacevic, Marko ; sta...@dpdk.org > Subject: [PATCH v1] mk: support building with renamed makefile > > The build system made a recursi

[dpdk-dev] [PATCH v1] mk: support building with renamed makefile

2018-01-22 Thread Marko Kovacevic
The build system made a recursive call to "make" after creating the build directory. This recursive call used the hard-coded filename "Makefile", which prevented builds from working if the file was renamed and make called using "make -f". Taking the filename from MAKEFILES_LIST make variable fixes