summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMirco Bauer <meebey@meebey.net>2014-01-15 07:21:35 +0100
committerMirco Bauer <meebey@meebey.net>2014-01-15 07:21:35 +0100
commitbfd2fb61a8078c9e563e23a07a649a033fa83b74 (patch)
tree55487ccb456f09bd1b3a1980896fafd96e77cd3a
parentc01f5fca67baeb77c2683f7e4d108d8c2ff82d3e (diff)
parent37faf7705a086aeddcfb410fc0a8de920421807d (diff)
downloadmono-bfd2fb61a8078c9e563e23a07a649a033fa83b74.tar.gz
Merge remote-tracking branch 'alioth/raof/framework-maintscript-integration' into master-experimental
-rw-r--r--debian/mono-gac.postinst4
-rw-r--r--debian/mono-gac.prerm5
2 files changed, 9 insertions, 0 deletions
diff --git a/debian/mono-gac.postinst b/debian/mono-gac.postinst
index 3d93b4d4b6..0eacafaab6 100644
--- a/debian/mono-gac.postinst
+++ b/debian/mono-gac.postinst
@@ -4,6 +4,10 @@
if [ -x /usr/share/cli-common/gac-install ]; then
/usr/share/cli-common/gac-install mono
fi
+# Install any framework libs
+if [ -x /usr/share/cli-common/framework-install ]; then
+ /usr/share/cli-common/framework-install mono
+fi
# Update the alternatives
update-alternatives \
diff --git a/debian/mono-gac.prerm b/debian/mono-gac.prerm
index e774a00133..a050284030 100644
--- a/debian/mono-gac.prerm
+++ b/debian/mono-gac.prerm
@@ -7,6 +7,11 @@ if [ "$1" = remove ]; then
if [ -x /usr/share/cli-common/gac-remove ]; then
/usr/share/cli-common/gac-remove mono
fi
+
+ # Remove any framework libs
+ if [ -x /usr/share/cli-common/framework-remove ]; then
+ /usr/share/cli-common/framework-remove mono
+ fi
fi
#DEBHELPER#