summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorStephan Bergmann <stephan.bergmann@allotropia.de>2024-10-16 11:09:40 +0200
committerStephan Bergmann <stephan.bergmann@allotropia.de>2024-10-16 15:18:59 +0200
commit2455a0d8e1fcc63e41b39ebf2cf8cc669803ad58 (patch)
tree083f93d29e693aa54412d9eea5e9caa24fbdb898 /odk
parent740c030e302cba0ee29ef8aa4288626cc5b4e3f7 (diff)
Drop extra quoting
...introduced in 074714fab8db751e2aa0138391a270124733977d ".NET Bindings: Create nuget package for LO SDK". The assumption is that none of the variables used in that block of code represent paths that contain characters that would need any form of quoting. (And if they did, the solution would not be to just wrap them in "..." quoting, but to use '...' and escape any contained ' properly.) Change-Id: Ie5b972c53a60c8c9a4bcfa03627a8e1998646285 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175010 Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de> Tested-by: Jenkins
Diffstat (limited to 'odk')
-rw-r--r--odk/build-examples_common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/odk/build-examples_common.mk b/odk/build-examples_common.mk
index e71e60714a0f..9f608e5d196a 100644
--- a/odk/build-examples_common.mk
+++ b/odk/build-examples_common.mk
@@ -67,7 +67,7 @@ $(gb_CustomTarget_workdir)/$(1)/setsdkenv: \
-e 's!@OFFICE_HOME@!$(INSTROOTBASE)!' -e 's!@OO_SDK_MAKE_HOME@!!' \
-e 's!@OO_SDK_ZIP_HOME@!!' -e 's!@OO_SDK_CAT_HOME@!!' \
-e 's!@OO_SDK_SED_HOME@!!' -e 's!@OO_SDK_CPP_HOME@!!' \
- -e 's!@OO_SDK_DOTNET_ROOT@!"$(DOTNET_ROOT)"!' \
+ -e 's!@OO_SDK_DOTNET_ROOT@!$(DOTNET_ROOT)!' \
-e 's!@OO_SDK_JAVA_HOME@!$(JAVA_HOME)!' \
-e 's!@OO_SDK_OUTPUT_DIR@!$(gb_CustomTarget_workdir)/$(1)/out!' \
-e 's!@SDK_AUTO_DEPLOYMENT@!YES!' $$< > $$@