Skip to content

Commit 0ac4e82

Browse files
authored
build: remove /system/comma (commaai#23937)
1 parent da5a0c4 commit 0ac4e82

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

SConstruct

+3-4
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ if arch == "aarch64" or arch == "larch64":
8989
"/usr/local/lib",
9090
"/usr/lib",
9191
"/system/vendor/lib64",
92-
"/system/comma/usr/lib",
9392
f"#third_party/acados/{arch}/lib",
9493
]
9594

@@ -306,11 +305,11 @@ if arch == "Darwin":
306305
qt_env["FRAMEWORKS"] += [f"Qt{m}" for m in qt_modules] + ["OpenGL"]
307306
qt_env.AppendENVPath('PATH', os.path.join(qt_env['QTDIR'], "bin"))
308307
elif arch == "aarch64":
309-
qt_env['QTDIR'] = "/system/comma/usr"
308+
qt_env['QTDIR'] = "/usr"
310309
qt_dirs = [
311-
f"/system/comma/usr/include/qt",
310+
f"/usr/include/qt",
312311
]
313-
qt_dirs += [f"/system/comma/usr/include/qt/Qt{m}" for m in qt_modules]
312+
qt_dirs += [f"/usr/include/qt/Qt{m}" for m in qt_modules]
314313

315314
qt_libs = [f"Qt5{m}" for m in qt_modules]
316315
qt_libs += ['EGL', 'GLESv3', 'c++_shared']

0 commit comments

Comments
 (0)