diff options
author | jan Iversen <jani@libreoffice.org> | 2018-01-18 12:02:17 +0100 |
---|---|---|
committer | jan Iversen <jani@libreoffice.org> | 2018-01-18 12:03:14 +0100 |
commit | e2ef73648ad9a9d531d563668d85eb6721d88d79 (patch) | |
tree | e46d8ad6c60d32317a8e6c596a802bc29f2a6ec0 /ios | |
parent | 0c6cfea81e99a815c35b1a0e908a29bc6dc424f1 (diff) |
iOS, directory creation as part of setup
Corrected sequence for creating directories
Change-Id: I7a148b5568694c67e382e75a2e1629d3e23bf197
Diffstat (limited to 'ios')
-rw-r--r-- | ios/CustomTarget_iOS_setup.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ios/CustomTarget_iOS_setup.mk b/ios/CustomTarget_iOS_setup.mk index 81dac6686fbb..543ef306a7db 100644 --- a/ios/CustomTarget_iOS_setup.mk +++ b/ios/CustomTarget_iOS_setup.mk @@ -21,21 +21,21 @@ $(call gb_CustomTarget_get_target,ios/iOS_setup): $(IOSGEN)/native-code.h #- Generate dynamic files --------------------------------------------------- $(IOSGEN) $(WORKDIR)/ios: - $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ENV,2) + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),EN1,2) mkdir -p $(IOSGEN) $(IOSRES) $(IOSRES)/services \ $(IOSRES)/share/config $(IOSRES)/share/filter $(IOSRES)/program \ $(IOSGEN)/simulator \ $(IOSGEN)/debug \ $(IOSGEN)/release \ - $(IOSGEN) $(WORKDIR)/ios; + $(WORKDIR)/ios; $(IOSGEN)/native-code.h: $(BUILDDIR)/config_host.mk \ $(SRCDIR)/ios/CustomTarget_iOS_setup.mk \ - $(SRCDIR)/solenv/bin/native-code.py - $(IOSGEN)/ios: - $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ENV,2) + $(SRCDIR)/solenv/bin/native-code.py \ + $(IOSGEN) $(WORKDIR)/ios + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),EN2,2) $(SRCDIR)/solenv/bin/native-code.py \ -C -g core -g writer -g calc -g draw -g edit \ > $(IOSGEN)/native-code.h |