diff options
author | Rick Farina <zerochaos@gentoo.org> | 2020-07-28 12:50:35 -0400 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2020-07-28 14:12:02 -0400 |
commit | 18e93fe766ac0d02896b8c547ad1b036d918125f (patch) | |
tree | 47543ce41e884fa3d8c69106e83e8a4c3626588a /sci-geosciences | |
parent | sci-geosciences/gpsd: bumpity bump (diff) | |
download | gentoo-18e93fe766ac0d02896b8c547ad1b036d918125f.tar.gz gentoo-18e93fe766ac0d02896b8c547ad1b036d918125f.tar.bz2 gentoo-18e93fe766ac0d02896b8c547ad1b036d918125f.zip |
sci-geosciences/gpsd: more die
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Rick Farina <zerochaos@gentoo.org>
Diffstat (limited to 'sci-geosciences')
-rw-r--r-- | sci-geosciences/gpsd/gpsd-3.20.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sci-geosciences/gpsd/gpsd-3.20.ebuild b/sci-geosciences/gpsd/gpsd-3.20.ebuild index 1da8c9d4b80f..14a770778674 100644 --- a/sci-geosciences/gpsd/gpsd-3.20.ebuild +++ b/sci-geosciences/gpsd/gpsd-3.20.ebuild @@ -105,7 +105,7 @@ python_prepare_all() { use gpsd_protocols_ublox && pybins+="+ ['ubxtool']" use gpsd_protocols_greis && pybins+="+ ['zerk']" local pysrcs=$(sed -n '/^ *python_extensions = {/,/}/{s:^ *::;s:os[.]sep:"/":g;p}' SConstruct) - local packet=$("${PYTHON}" -c "${pysrcs}; print(python_extensions['gps/packet'])") + local packet=$("${PYTHON}" -c "${pysrcs}; print(python_extensions['gps/packet'])" || die "Unable to extract packet types") # Post 3.19 the clienthelpers were merged into gps.packet sed \ -e "s|@VERSION@|$(pyvar gpsd_version)|" \ |