diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-02-27 10:03:18 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-02-27 10:06:22 +0200 |
commit | 4c737b647078f35a2435e27d9f7f94039db9d6c3 (patch) | |
tree | 7a7699dea8d63b72ac7f248ec026e47be9d3c8ee /Makefile | |
parent | 42b11e861a6eb4fef43225259c300f87b8d1a625 (diff) |
Decouple disabling of scripting (BASIC &co) from OS being iOS
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |