QGIS/debian/qgis-providers.postinst
Juergen E. Fischer d4f28fa976 only install/copy srs.db that we're using (fix 56d03f783f041)
(cherry picked from commit 557d1afcf7391d1f56ce06658b46065fc527dbfc)
2019-07-17 20:33:08 +02:00

11 lines
202 B
Bash
Executable File

#!/bin/sh
set -e
if [ "$1" = "triggered" ] || [ "$1" = "configure" ]; then
if [ -w /usr/share/qgis/resources/srs.db ] && [ -x /usr/lib/qgis/crssync ]; then
/usr/lib/qgis/crssync
fi
fi
#DEBHELPER#