Comment 5 for bug 496839

Revision history for this message
quequotion (quequotion) wrote :

Why doesn't anyone reply?!

Is anyone even the least bit interested in this problem? It is a very serious issue for me. I'm a little shocked no one has even asked me for further detail or recommended some way to log this error..... (it does't seem to log anywhere by the way.. I've checked the logs for apt, dpkg, and syslog).

It affects ALL versions of xulrunner since 1.9.1. It affects ALL versions of Ubuntu since Jaunty.

I had the same problem when I upgraded to Lucid.

xulrunner-1.9.2 never installs.
the postinst script never finishes.
i have once again edited the script to make sure everything gets done, but I have NO IDEA what sort of side effects could come up.

Here it is again, with all the "if" statements commented out to make sure the script runs all the way through.

#!/bin/sh
set -e

XUL_VERSION=1.9.2
GRE_VERSION=`/usr/bin/xulrunner-$XUL_VERSION --gre-version`

#if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
        /usr/sbin/update-alternatives --install /usr/bin/xulrunner \
                xulrunner /usr/bin/xulrunner-$XUL_VERSION 50
# if test -e /usr/lib/xulrunner-$GRE_VERSION/.autoreg; then
  touch /usr/lib/xulrunner-$GRE_VERSION/.autoreg
# fi

 # Remove possible left-over
# if [ -f /etc/ld.so.conf.d/xulrunner-$XUL_VERSION ] ; then
  rm -f /etc/ld.so.conf.d/xulrunner-$XUL_VERSION
# fi

 ldconfig
#fi