summaryrefslogtreecommitdiff
path: root/community-staging/root/root.install
diff options
context:
space:
mode:
Diffstat (limited to 'community-staging/root/root.install')
-rw-r--r--community-staging/root/root.install17
1 files changed, 0 insertions, 17 deletions
diff --git a/community-staging/root/root.install b/community-staging/root/root.install
deleted file mode 100644
index 457af7314..000000000
--- a/community-staging/root/root.install
+++ /dev/null
@@ -1,17 +0,0 @@
-post_install() {
- if ! [ `grep '/usr/lib/root' etc/ld.so.conf` ]; then
- echo "/usr/lib/root" >> etc/ld.so.conf
- sbin/ldconfig -r .
- fi
-
- update-desktop-database >/dev/null
-
- update-mime-database /usr/share/mime >/dev/null
-}
-
-pre_remove() {
- cat etc/ld.so.conf | grep -v '/usr/lib/root' >/tmp/.pacroot
- mv /tmp/.pacroot etc/ld.so.conf
- chmod 644 etc/ld.so.conf
- sbin/ldconfig -r .
-}