netboot/zipl: use '$(MAKE)' instead of 'make'

Use '$(MAKE)' to pass down the makefile flags.

This fixes the warning:

make[4]: warning: jobserver unavailable: using -j1.  Add '+' to parent make rule.

Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Reviewed-by: Philipp Rudo <prudo@linux.ibm.com>
Reviewed-by: Jan Hoeppner <hoeppner@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
Marc Hartmayer
2019-11-20 13:01:35 +01:00
committed by Jan Höppner
parent 3d74c534bf
commit efcfbce386
2 changed files with 5 additions and 5 deletions

View File

@@ -33,8 +33,8 @@ pxelinux.initramfs: $(BBINSTALL)
$(BUSYBOX)/_install:
wget https://busybox.net/downloads/$(BUSYBOX).tar.bz2
tar xjf $(BUSYBOX).tar.bz2
make -C $(BUSYBOX) defconfig
make -C $(BUSYBOX) install
$(MAKE) -C $(BUSYBOX) defconfig
$(MAKE) -C $(BUSYBOX) install
install: