From efcfbce3867e5abbf8a84442ff6f92b053ea6d85 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Wed, 20 Nov 2019 13:01:35 +0100 Subject: [PATCH] netboot/zipl: use '$(MAKE)' instead of 'make' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-by: Philipp Rudo Reviewed-by: Jan Hoeppner Signed-off-by: Jan Höppner --- netboot/Makefile.pxelinux.0 | 4 ++-- zipl/src/Makefile | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/netboot/Makefile.pxelinux.0 b/netboot/Makefile.pxelinux.0 index 093e0cfd..41296cbf 100644 --- a/netboot/Makefile.pxelinux.0 +++ b/netboot/Makefile.pxelinux.0 @@ -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: diff --git a/zipl/src/Makefile b/zipl/src/Makefile index 191c7db8..be3c1ef1 100644 --- a/zipl/src/Makefile +++ b/zipl/src/Makefile @@ -45,10 +45,10 @@ clean: .boot.o.d boot.o: ../boot/data.h ../boot/data.h: - make -C ../boot data.h + $(MAKE) -C ../boot data.h ../boot/data.o: - make -C ../boot data.o + $(MAKE) -C ../boot data.o ../boot/stage3.bin: - make -C ../boot stage3.bin + $(MAKE) -C ../boot stage3.bin