From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47928) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ydg0H-0004Sg-95 for qemu-devel@nongnu.org; Thu, 02 Apr 2015 10:21:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ydg0B-0002yL-4v for qemu-devel@nongnu.org; Thu, 02 Apr 2015 10:21:53 -0400 Received: from mx1.redhat.com ([209.132.183.28]:46803) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ydg0A-0002yB-Vy for qemu-devel@nongnu.org; Thu, 02 Apr 2015 10:21:47 -0400 From: Paolo Bonzini Date: Thu, 2 Apr 2015 16:21:31 +0200 Message-Id: <1427984491-23475-7-git-send-email-pbonzini@redhat.com> In-Reply-To: <1427984491-23475-1-git-send-email-pbonzini@redhat.com> References: <1427984491-23475-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 6/6] Use $(MAKE) for recursive make List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Ed Maste From: Ed Maste On BSDs "make" is typically BSD make, while "gmake" is GNU make. Signed-off-by: Ed Maste Message-Id: <1427911118-21905-1-git-send-email-emaste@freebsd.org> [Fix $(INSTALLER) too as reported by Fam Zheng. - Paolo] Signed-off-by: Paolo Bonzini --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 88bce56..93af871 100644 --- a/Makefile +++ b/Makefile @@ -331,8 +331,8 @@ distclean: clean rm -rf $$d || exit 1 ; \ done rm -Rf .sdk - if test -f pixman/config.log; then make -C pixman distclean; fi - if test -f dtc/version_gen.h; then make $(DTC_MAKE_ARGS) clean; fi + if test -f pixman/config.log; then $(MAKE) -C pixman distclean; fi + if test -f dtc/version_gen.h; then $(MAKE) $(DTC_MAKE_ARGS) clean; fi KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ ar de en-us fi fr-be hr it lv nl pl ru th \ @@ -532,7 +532,7 @@ installer: $(INSTALLER) INSTDIR=/tmp/qemu-nsis $(INSTALLER): $(SRC_PATH)/qemu.nsi - make install prefix=${INSTDIR} + $(MAKE) install prefix=${INSTDIR} ifdef SIGNCODE (cd ${INSTDIR}; \ for i in *.exe; do \ -- 2.3.4