From 139c1de00f2638d6c596ac46ddf5481d1272dd72 Mon Sep 17 00:00:00 2001 From: Paulo Matos Date: Tue, 28 Jul 2020 10:06:11 +0200 Subject: [PATCH] Call recursive make through $(MAKE) This fixes the build under FreeBSD 12.1 where the system `make` is not compatible with the Chez makefiles and gmake is needed instead. --- racket/src/ChezScheme/makefiles/Mf-boot.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/src/ChezScheme/makefiles/Mf-boot.in b/racket/src/ChezScheme/makefiles/Mf-boot.in index 6dba150a84..898e43027f 100644 --- a/racket/src/ChezScheme/makefiles/Mf-boot.in +++ b/racket/src/ChezScheme/makefiles/Mf-boot.in @@ -19,7 +19,7 @@ doit: $(bootfiles) %.boot: ( cd .. ; ./workarea $* xc-$* ) - ( cd ../xc-$*/s ; make -f Mf-cross base=../../$(workarea) m=$(m) xm=$* ) + ( cd ../xc-$*/s ; $(MAKE) -f Mf-cross base=../../$(workarea) m=$(m) xm=$* ) mkdir -p ../boot/$* for x in `echo scheme.boot petite.boot scheme.h equates.h gc-oce.inc gc-ocd.inc vfasl.inc` ; do\ if [ ! -h ../xc-$*/boot/$*/$$x ] ; then \