Hi,
One of my Makefiles contains
MAKEFLAGS += -j
Prior to the above commit, this would cause make to run as if I had run
make -j
Since that commit, it appears to be ignored. If I run
make -j
explicitly I get parallel makes, but setting MAKEFLAGS in the Makefile
doesn't achieve that resul
On Thu, Sep 28 2017, NeilBrown wrote:
> Hi,
> One of my Makefiles contains
> MAKEFLAGS += -j
>
> Prior to the above commit, this would cause make to run as if I had run
>make -j
>
> Since that commit, it appears to be ignored. If I run
> make -j
> explicitly I get parallel makes, but sett