odk/build-examples_common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 2455a0d8e1fcc63e41b39ebf2cf8cc669803ad58 Author: Stephan Bergmann <[email protected]> AuthorDate: Wed Oct 16 11:09:40 2024 +0200 Commit: Stephan Bergmann <[email protected]> CommitDate: Wed Oct 16 15:18:59 2024 +0200 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 <[email protected]> Tested-by: Jenkins 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!' $$< > $$@
