From 574fd03208013eda46fa9bbfef9a6ed0eb44f803 Mon Sep 17 00:00:00 2001 From: Comma Device Date: Fri, 19 Jan 2024 13:45:06 -0800 Subject: [PATCH] fix tici build --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index a95a77817b..3faa978087 100644 --- a/SConstruct +++ b/SConstruct @@ -301,7 +301,7 @@ else: qt_gui_path = os.path.join(qt_install_headers, "QtGui") qt_gui_dirs = [d for d in os.listdir(qt_gui_path) if os.path.isdir(os.path.join(qt_gui_path, d))] - qt_dirs += f"{qt_install_headers}/QtGui/{qt_gui_dirs[0]}/QtGui" if qt_gui_dirs else [] + qt_dirs += [f"{qt_install_headers}/QtGui/{qt_gui_dirs[0]}/QtGui", ] if qt_gui_dirs else [] qt_dirs += [f"{qt_install_headers}/Qt{m}" for m in qt_modules] qt_libs = [f"Qt5{m}" for m in qt_modules]