Fix missing log statement for target_qt.conf

This commit is contained in:
J.D. Purcell
2025-03-11 20:38:32 -04:00
parent 9aafd0bfd4
commit 7f5d0ed242

View File

@@ -251,6 +251,7 @@ class Updater:
def patch_target_qt_conf(self, base_dir: str, qt_version: str, arch_dir: str, os_name: str, desktop_arch_dir: str):
target_qt_conf = self.prefix / "bin" / "target_qt.conf"
self.logger.info(f"Patching {target_qt_conf}")
new_hostprefix = f"HostPrefix=../../{desktop_arch_dir}"
new_targetprefix = "Prefix={}".format(str(Path(base_dir).joinpath(qt_version, arch_dir, "target")))
new_hostdata = "HostData=../{}".format(arch_dir)