From 50d9460f63926b29d70c0b5554dd11006a8a4a96 Mon Sep 17 00:00:00 2001 From: Aleksandr Nagaev Date: Mon, 24 Feb 2025 12:28:42 +0300 Subject: [PATCH] [build] fix build_lo_windows.py --- scripts/develop/build_lo_windows.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/develop/build_lo_windows.py b/scripts/develop/build_lo_windows.py index 3996a4c..e7825b5 100644 --- a/scripts/develop/build_lo_windows.py +++ b/scripts/develop/build_lo_windows.py @@ -44,9 +44,9 @@ CYGWIN_SETUP_PARAMS = [ CYGWIN_BAT_PATH = 'C:/cygwin64/Cygwin.bat' LO_BUILD_PATH = os.path.normpath(os.path.join(os.getcwd(), '../../../LO')) -CONFIGURE_PARAMS = ["--with-external-tar=c:/games/lo/sources/lo-externalsrc", - "--with-junit=c:/games/lo/sources/junit-4.10.jar", - "--with-ant-home=c:/games/lo/sources/apache-ant-1.9.5", +CONFIGURE_PARAMS = [f"--with-external-tar={LO_BUILD_PATH}/sources/lo-externalsrc", + f"--with-junit={LO_BUILD_PATH}/sources/junit-4.10.jar", + f"--with-ant-home={LO_BUILD_PATH}/sources/apache-ant-1.9.5", "--enable-pch", "--disable-ccache", "--with-visual-studio=2022",