From 7ae681949a6c62d0e880775f0b20503e72ae6906 Mon Sep 17 00:00:00 2001 From: Mark Eichin Date: Thu, 11 Nov 1993 20:35:30 +0000 Subject: [PATCH] if we're on lynx, set up GNU_MAKE and CONFIG_SHELL in FLAGS_TO_PASS to override "generic" (ie. incorrect) values of "" and /usr/latest/bin/make --- build-all.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-all.mk b/build-all.mk index 2c7dc98..c691622 100644 --- a/build-all.mk +++ b/build-all.mk @@ -201,6 +201,11 @@ FLAGS_TO_PASS := \ "RELEASE_TAG=$(RELEASE_TAG)" \ "SHELL=$(SHELL)" +# set GNU_MAKE and CONFIG_SHELL correctly in sub-builds +ifeq ($(patsubst %-lynxos,lynxos,$(canonhost)),lynxos) +FLAGS_TO_PASS := $(FLAGS_TO_PASS) "GNU_MAKE=$(MAKE)" "CONFIG_SHELL=/bin/bash" +endif + all-emacs: @echo build started at `date` [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR) -- 2.7.4