summaryrefslogtreecommitdiff
path: root/autoscripts
diff options
context:
space:
mode:
authorNiels Thykier <niels@thykier.net>2015-01-04 11:51:37 +0100
committerNiels Thykier <niels@thykier.net>2015-01-04 11:51:37 +0100
commit3543394784238e0f0c75988bb7a647fab0d8c26c (patch)
treec03b9e1937e25e451c9e291e6e5238541d2edfe0 /autoscripts
parentcc68efe05d0fefc2a0ec4cab77ed7554089999c8 (diff)
dh_makeshlibs [compat 10]: Pass -X to ldconfig
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'autoscripts')
-rw-r--r--autoscripts/postinst-makeshlibs-c103
-rw-r--r--autoscripts/postrm-makeshlibs-c103
2 files changed, 6 insertions, 0 deletions
diff --git a/autoscripts/postinst-makeshlibs-c10 b/autoscripts/postinst-makeshlibs-c10
new file mode 100644
index 00000000..bab4455b
--- /dev/null
+++ b/autoscripts/postinst-makeshlibs-c10
@@ -0,0 +1,3 @@
+if [ "$1" = "configure" ]; then
+ ldconfig -X
+fi
diff --git a/autoscripts/postrm-makeshlibs-c10 b/autoscripts/postrm-makeshlibs-c10
new file mode 100644
index 00000000..c81079d0
--- /dev/null
+++ b/autoscripts/postrm-makeshlibs-c10
@@ -0,0 +1,3 @@
+if [ "$1" = "remove" ]; then
+ ldconfig -X
+fi