mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-27 20:03:53 +08:00
7 lines
174 B
Python
Executable File
7 lines
174 B
Python
Executable File
#!/usr/bin/env python3
|
|
import os
|
|
|
|
assert os.system("make") == 0
|
|
os.environ['LD_LIBRARY_PATH'] = "/system/lib64:" + os.environ['LD_LIBRARY_PATH']
|
|
os.execv("./gpsd", ["gpsd"])
|