summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2012-05-29 14:44:29 -0400
committerEric S. Raymond <esr@thyrsus.com>2012-05-30 00:34:15 -0400
commit6d9895890a967d255b373e85a07b3abdcd386973 (patch)
treea053ac4ffc07eb286f285e6a9c13c6f60355eafe /SConstruct
parent4e32fc8c5e2f3c0ca13a4dac3715b86594ab6923 (diff)
downloadgpsd-6d9895890a967d255b373e85a07b3abdcd386973.tar.gz
OpenWrt/CeroWrt build fix.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 3 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index 98356f5f..5f92ffad 100644
--- a/SConstruct
+++ b/SConstruct
@@ -164,7 +164,7 @@ for (name, default, help) in boolopts:
nonboolopts = (
("gpsd_user", "nobody", "privilege revocation user",),
- ("gpsd_group", "(undefined)", "privilege revocation group"),
+ ("gpsd_group", "dialout", "privilege revocation group"),
("prefix", "/usr/local", "installation directory prefix"),
("limited_max_clients", 0, "maximum allowed clients"),
("limited_max_devices", 0, "maximum allowed devices"),
@@ -200,7 +200,8 @@ import_env = (
"LOGNAME", # LOGNAME is required for the flocktest production.
'PATH', # Required for ccache and Coverity scan-build
'PKG_CONFIG_PATH', # Set .pc file directory in a crossbuild
- 'STAGING_DIR', # Required by the OpenWRT build.
+ 'STAGING_DIR', # Required by the OpenWRT and CeroWrt builds.
+ 'STAGING_PREFIX', # Required by the OpenWRT and CeroWrt builds.
)
envs = {}
for var in import_env: