summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-07-26 18:05:30 -0700
committerGary E. Miller <gem@rellim.com>2018-07-26 18:05:30 -0700
commitd1f79455a50f92b3dbf68c2ad5196423d80ed78a (patch)
tree45140605cd6e980544f832665ecf0a8321f485b5 /SConstruct
parentb730dca8fe767abdbf8a0b5933e5f8df75126c32 (diff)
downloadgpsd-d1f79455a50f92b3dbf68c2ad5196423d80ed78a.tar.gz
SConstruct: more sorting.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct20
1 files changed, 15 insertions, 5 deletions
diff --git a/SConstruct b/SConstruct
index 6100cd22..665001c2 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1362,11 +1362,21 @@ else:
# Build Python binding
#
python_extensions = {
- "gps" + os.sep + "packet": ["gpspacket.c", "packet.c", "isgps.c",
- "driver_rtcm2.c", "os_compat.c", "hex.c",
- "crc24q.c"],
- "gps" + os.sep + "clienthelpers": ["gpsclient.c", "geoid.c",
- "gpsdclient.c", "os_compat.c"]
+ "gps" + os.sep + "packet": [
+ "crc24q.c",
+ "driver_rtcm2.c",
+ "gpspacket.c",
+ "hex.c",
+ "isgps.c",
+ "os_compat.c",
+ "packet.c",
+ ],
+ "gps" + os.sep + "clienthelpers": [
+ "geoid.c",
+ "gpsclient.c",
+ "gpsdclient.c",
+ "os_compat.c",
+ ]
}
python_env = env.Clone()