From 4c737b647078f35a2435e27d9f7f94039db9d6c3 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 27 Feb 2012 10:03:18 +0200 Subject: Decouple disabling of scripting (BASIC &co) from OS being iOS --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 68bea915752e..810de1dfae93 100644 --- a/Makefile +++ b/Makefile @@ -382,12 +382,12 @@ bootstrap: $(WORKDIR_BOOTSTRAP) # Build # build: bootstrap fetch $(if $(filter $(INPATH),$(INPATH_FOR_BUILD)),,cross-toolset) -ifeq ($(OS),IOS) +ifeq ($(DISABLE_INTERPRETERS),TRUE) # We must get the headers from basic and vbahelper "delivered" because # as we don't link to any libs from those they won't otherwise be, or # something. And we still do include those headers always even if the -# libs aren't built for iOS. (Ifdefs for iOS will be added later as -# necessary to take care of that.) +# libs aren't built in the --disable-interpreters case. (Ifdefs for +# DISABLE_INTERPRETERS will be added to the code later as necessary.) $(GNUMAKE) basic vbahelper endif ifeq ($(DISABLE_DBCONNECTIVITY),TRUE) -- cgit