Skip to content
This repository was archived by the owner on Apr 13, 2024. It is now read-only.

Commit 79b2fbf

Browse files
committed
fixups
1 parent 23ad256 commit 79b2fbf

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

messaging/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
demo
2+
*.o
3+
*.d
4+
*.a
5+
*.so

messaging/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from cereal import log
99
from common.realtime import sec_since_boot
10-
from selfdrive.services import service_list
10+
from cereal.services import service_list
1111

1212

1313
context = Context()

messaging/messaging_pyx_setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
extra_compile_args=extra_compile_args,
2727
libraries=libraries,
2828
extra_objects=[
29-
os.path.join(BASEDIR, 'selfdrive', 'messaging', 'messaging.a'),
29+
os.path.join(BASEDIR, 'cereal', 'messaging', 'messaging.a'),
3030
]
3131
)
3232
),

0 commit comments

Comments
 (0)