package/qemu: filter out long make options
authorAlexey Neyman <stilor@att.net>
Sat, 7 Aug 2021 19:15:07 +0000 (12:15 -0700)
committerYann E. MORIN <yann.morin.1998@free.fr>
Sat, 7 Aug 2021 20:59:41 +0000 (22:59 +0200)
commit5108554dfe0d4815c9c84f75b118298c147ccd33
tree065051001ece87fe03c5567951ac5bda66e05c99
parent0744eef34d836bc8ef086ed657377bc15ed753a9
package/qemu: filter out long make options

Since qemu started using ninja, they have the following fragment in the
Makefile:

MAKE.n = $(findstring n,$(firstword $(MAKEFLAGS)))
NINJAFLAGS = ... $(if $(MAKE.n), -n) ...

Buildroot's generated makefile in the O= directory invokes make in the
base buildroot with --no-print-directory. However, make's placement of
the --no-print-directory in MAKEFLAGS varies between the versions of
the host make; make 4.3 places that at the end while make 3.82 places
it at the beginning. As a result, if building on a system with an older
host make, qemu's makefile invokes `ninja -n` which does not generate
any outputs.

To reproduce, on a CentOS 7 machine or docker image:
  mkdir /tmp/br-build && cd /tmp/br-build
  make -C ~/buildroot pc_x86_64_bios_defconfig O=`pwd`
  make menuconfig # Switch to glibc, enable "QEMU" and "QEMU tools"
  make all # Build succeeds
  find target -name qemu-img # No binary has been built

Pick up the fix commited in Qemu upstream.

Signed-off-by: Alexey Neyman <stilor@att.net>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
package/qemu/0004-Makefile-ignore-long-options.patch [new file with mode: 0644]