So that's confirmed, there's a post-installation script problem with the
openoffice.org-common package.

The postinst file in the new package has been modified. The dh_icon
cache section has been changed from :

# Automatically added by dh_iconcache
touch -m /usr/share/icons/hicolor
if [ "$1" = configure ] && \
   [ -x "`which gtk-update-icon-cache 2>/dev/null`" ] && \
   [ -f /etc/gtk-2.0/gdk-pixbuf.loaders ] && \
   [ "`find /usr/share/icons/hicolor -mindepth 1 -maxdepth 1 -type d | wc -l`" 
-gt 0 ] && \
   [ "`find /usr/share/icons/hicolor -mindepth 1 -maxdepth 1 -type f -name 
index.theme | wc -l`" -eq 1 ]; then
        gtk-update-icon-cache -q /usr/share/icons/hicolor
fi
# End automatically added section
# Automatically added by dh_iconcache
touch -m /usr/share/icons/locolor
if [ "$1" = configure ] && \
   [ -x "`which gtk-update-icon-cache 2>/dev/null`" ] && \
   [ -f /etc/gtk-2.0/gdk-pixbuf.loaders ] && \
   [ "`find /usr/share/icons/locolor -mindepth 1 -maxdepth 1 -type d | wc -l`" 
-gt 0 ] && \
   [ "`find /usr/share/icons/locolor -mindepth 1 -maxdepth 1 -type f -name 
index.theme | wc -l`" -eq 1 ]; then
        gtk-update-icon-cache -q /usr/share/icons/locolor
fi
# End automatically added section
# Automatically added by dh_iconcache
touch -m /usr/share/icons/gnome
if [ "$1" = configure ] && \
   [ -x "`which gtk-update-icon-cache 2>/dev/null`" ] && \
   [ -f /etc/gtk-2.0/gdk-pixbuf.loaders ] && \
   [ "`find /usr/share/icons/gnome -mindepth 1 -maxdepth 1 -type d | wc -l`" 
-gt 0 ] && \
   [ "`find /usr/share/icons/gnome -mindepth 1 -maxdepth 1 -type f -name 
index.theme | wc -l`" -eq 1 ]; then
        gtk-update-icon-cache -q /usr/share/icons/gnome
fi
# End automatically added section


To :


# Automatically added by dh_icons
if which gtk-update-icon-cache >/dev/null 2>&1; then
        for dir in /usr/share/icons/hicolor /usr/share/icons/locolor 
/usr/share/icons/gnome; do
                gtk-update-icon-cache --force --quiet "$dir"
        done
fi
# End automatically added section


I'm pretty sure that the error is hidden behind these code lines! The new 
script doesn't "touch" the icons folders, this could maybe be the problem.

** Attachment added: "postinst_2.2.1-2ubuntu1_all"
   http://launchpadlibrarian.net/8452795/postinst_2.2.1-2ubuntu1_all

-- 
[gutsy] Trouble with package dependency (libcurl4-gnutls)
https://bugs.launchpad.net/bugs/124377
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to