diff options
author | Niels Thykier <niels@thykier.net> | 2016-01-15 20:25:57 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2016-01-15 20:25:57 +0000 |
commit | aad8be244acf0f46b3580243536e2460d12a549c (patch) | |
tree | 968ab82382da4a2626962cd54d30c11bd636489b /autoscripts | |
parent | ce76ccc473cc89c7659e0d19778e823810d2da49 (diff) | |
download | debhelper-aad8be244acf0f46b3580243536e2460d12a549c.tar.gz |
Revert "Remove unused makeshlibs autoscripts"
This reverts commit adde59b0f80bacfcfb93d061644d51bbcaca5b05.
Diffstat (limited to 'autoscripts')
-rw-r--r-- | autoscripts/postinst-makeshlibs | 3 | ||||
-rw-r--r-- | autoscripts/postrm-makeshlibs | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/autoscripts/postinst-makeshlibs b/autoscripts/postinst-makeshlibs new file mode 100644 index 00000000..8a25b9e9 --- /dev/null +++ b/autoscripts/postinst-makeshlibs @@ -0,0 +1,3 @@ +if [ "$1" = "configure" ]; then + ldconfig +fi diff --git a/autoscripts/postrm-makeshlibs b/autoscripts/postrm-makeshlibs new file mode 100644 index 00000000..96bf24ed --- /dev/null +++ b/autoscripts/postrm-makeshlibs @@ -0,0 +1,3 @@ +if [ "$1" = "remove" ]; then + ldconfig +fi |