diff options
Diffstat (limited to 'desktop/ede/doinst.sh')
-rw-r--r-- | desktop/ede/doinst.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/desktop/ede/doinst.sh b/desktop/ede/doinst.sh index 4410fea4d9..eff4bc5182 100644 --- a/desktop/ede/doinst.sh +++ b/desktop/ede/doinst.sh @@ -1,13 +1,3 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - rm $NEW - fi -} - if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database -q usr/share/applications 2>/dev/null fi @@ -17,4 +7,3 @@ if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 fi fi - |