summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasily Melenchuk <vasily.melenchuk@cib.de>2019-10-15 15:07:10 +0300
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2019-12-04 05:42:39 +0100
commita3bb3d8880379ac835e50545d5567557551ebd1b (patch)
tree975aa837518b0817d1df258d67bd6fb9b7a39034
parent6b490eb616fd79d880c38b43a0f30ccd7dfe42b7 (diff)
odk: fix for change directory in complextoolbarcontrols sample
On Windows classical "cd" command does not change drive automatically. So if OO_SDK_OUT folder located on another drive than SDK_HOME we will receive confusing buid errors. To avoid this for Windows configuration we should use "cd /d". Change-Id: I22908d49fc915d3a834972357934349ba82bbec5 Reviewed-on: https://gerrit.libreoffice.org/80827 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
-rw-r--r--odk/examples/cpp/complextoolbarcontrols/Makefile6
-rw-r--r--odk/settings/settings.mk5
2 files changed, 8 insertions, 3 deletions
diff --git a/odk/examples/cpp/complextoolbarcontrols/Makefile b/odk/examples/cpp/complextoolbarcontrols/Makefile
index 446b06e50e15..ad75987cfab0 100644
--- a/odk/examples/cpp/complextoolbarcontrols/Makefile
+++ b/odk/examples/cpp/complextoolbarcontrols/Makefile
@@ -142,10 +142,10 @@ $(COMP_PACKAGE) : $(SHAREDLIB_OUT)/$(COMP_IMPL_NAME) Addons.xcu ProtocolHandler.
-$(MKDIR) $(subst /,$(PS),$(@D)) && $(DEL) $(subst \\,\,$(subst /,$(PS),$@))
-$(MKDIR) $(subst /,$(PS),$(OUT_COMP_GEN)/$(UNOPKG_PLATFORM))
$(COPY) $(subst /,$(PS),$<) $(subst /,$(PS),$(OUT_COMP_GEN)/$(UNOPKG_PLATFORM))
- cd $(subst /,$(PS),$(OUT_COMP_GEN)) && $(SDK_ZIP) -u ../../bin/$(@F) $(COMP_NAME).components description.xml
- cd $(subst /,$(PS),$(OUT_COMP_GEN)) && $(SDK_ZIP) -u ../../bin/$(@F) $(UNOPKG_PLATFORM)/$(<F)
+ $(CD) $(subst /,$(PS),$(OUT_COMP_GEN)) && $(SDK_ZIP) -u ../../bin/$(@F) $(COMP_NAME).components description.xml
+ $(CD) $(subst /,$(PS),$(OUT_COMP_GEN)) && $(SDK_ZIP) -u ../../bin/$(@F) $(UNOPKG_PLATFORM)/$(<F)
$(SDK_ZIP) -u $@ Addons.xcu ProtocolHandler.xcu WriterWindowState.xcu CalcWindowState.xcu logo_small.png logo_big.png
- cd $(subst /,$(PS),$(OUT_COMP_GEN)/$(subst .$(UNOOXT_EXT),,$(@F))) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml
+ $(CD) $(subst /,$(PS),$(OUT_COMP_GEN)/$(subst .$(UNOOXT_EXT),,$(@F))) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml
$(COMP_REGISTERFLAG) : $(COMP_PACKAGE)
ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
diff --git a/odk/settings/settings.mk b/odk/settings/settings.mk
index 25b31cd68fac..49e8f18e51a1 100644
--- a/odk/settings/settings.mk
+++ b/odk/settings/settings.mk
@@ -59,6 +59,7 @@ CAT=type
OBJ_EXT=obj
EXE_EXT=.exe
COPY=copy
+CD=cd /d
SHAREDLIB_EXT=dll
SHAREDLIB_OUT=$(OUT_BIN)
UNOPKG_PLATFORM=Windows
@@ -191,6 +192,7 @@ P2BG=&
DEL=rm -f
DELRECURSIVE=rm -rf
COPY=cp
+CD=cd
URLPREFIX=file://
COMID=gcc3
@@ -334,6 +336,7 @@ P2BG=&
DEL=rm -f
DELRECURSIVE=rm -rf
COPY=cp
+CD=cd
URLPREFIX=file://
SALLIB=-luno_sal
@@ -433,6 +436,7 @@ P2BG=&
DEL=rm -f
DELRECURSIVE=rm -rf
COPY=cp
+CD=cd
URLPREFIX=file://
SALLIB=-luno_sal
@@ -543,6 +547,7 @@ P2BG=&
DEL=rm -f
DELRECURSIVE=rm -rf
COPY=cp
+CD=cd
URLPREFIX=file://
SALLIB=-luno_sal