odk/CustomTarget_config_win.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit daea0f448a5c56db63dcf08cee935735de1532f2 Author: Stephan Bergmann <[email protected]> AuthorDate: Wed Nov 13 18:55:08 2024 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Thu Nov 14 08:10:52 2024 +0100 Parameterize lower case PRODUCTNAME in odk/config/setsdkenv_windows.bat Change-Id: I50ebfabdc63729b0ea3152fa919758b028a9c5d4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176558 Reviewed-by: Stephan Bergmann <[email protected]> Tested-by: Jenkins (cherry picked from commit deaa5dc2a4d5446cdd120236615608702598e365) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176559 Tested-by: allotropia jenkins <[email protected]> diff --git a/odk/CustomTarget_config_win.mk b/odk/CustomTarget_config_win.mk index 3aabc8db0359..a70a11a4c083 100644 --- a/odk/CustomTarget_config_win.mk +++ b/odk/CustomTarget_config_win.mk @@ -14,6 +14,6 @@ $(eval $(call gb_CustomTarget_register_targets,odk/config,\ )) $(gb_CustomTarget_workdir)/odk/config/setsdkenv_windows.bat : $(SRCDIR)/odk/config/setsdkenv_windows.bat - sed $< -e 's#__SDKNAME__#libreoffice$(PRODUCTVERSION)_sdk#' > $@ + sed $< -e 's#__SDKNAME__#'"$$(printf %s '$(PRODUCTNAME)' | tr A-Z a-z)"'$(PRODUCTVERSION)_sdk#' > $@ # vim: set noet sw=4 ts=4:
