From e2ef73648ad9a9d531d563668d85eb6721d88d79 Mon Sep 17 00:00:00 2001
From: jan Iversen <jani@libreoffice.org>
Date: Thu, 18 Jan 2018 12:02:17 +0100
Subject: iOS, directory creation as part of setup

Corrected sequence for creating directories

Change-Id: I7a148b5568694c67e382e75a2e1629d3e23bf197
---
 ios/CustomTarget_iOS_setup.mk | 10 +++++-----
 1 file 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
-- 
cgit