summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-02-27 10:03:18 +0200
committerTor Lillqvist <tml@iki.fi>2012-02-27 10:06:22 +0200
commit4c737b647078f35a2435e27d9f7f94039db9d6c3 (patch)
tree7a7699dea8d63b72ac7f248ec026e47be9d3c8ee /Makefile
parent42b11e861a6eb4fef43225259c300f87b8d1a625 (diff)
Decouple disabling of scripting (BASIC &co) from OS being iOS
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
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)