summaryrefslogtreecommitdiffstats
path: root/debian/libreoffice-base.preinst.in
diff options
context:
space:
mode:
Diffstat (limited to 'debian/libreoffice-base.preinst.in')
-rw-r--r--debian/libreoffice-base.preinst.in21
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/libreoffice-base.preinst.in b/debian/libreoffice-base.preinst.in
new file mode 100644
index 000000000..08ab83ab0
--- /dev/null
+++ b/debian/libreoffice-base.preinst.in
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+set -e
+
+#INCLUDE_SHELL_LIB#
+
+if [ upgrade = "$1" ] || dpkg --compare-versions "$2" lt 1:6.4.0~beta1-2; then
+ dpkg-divert --remove --no-rename \
+ --divert /usr/lib/libreoffice/share/basic/dialog.xlc.noaccess \
+ /usr/lib/libreoffice/share/basic/dialog.xlc
+ dpkg-divert --remove --no-rename \
+ --divert /usr/lib/libreoffice/share/basic/script.xlc.noaccess \
+ /usr/lib/libreoffice/share/basic/script.xlc
+ # cleanup
+ rm -f /usr/lib/libreoffice/share/basic/script.xlc.noaccess
+ rm -f /usr/lib/libreoffice/share/basic/dialog.xlc.noaccess
+fi
+
+#DEBHELPER#
+
+exit 0