Diagnosis: the redirection operators are used unquoted in the postinst:

<pre>
        if [ -d "$link" ] && ! [ -L "$link" ] \
           && dpkg --compare-versions "$2" lt-nl <9.04.6>
        then
</pre>

The following change at least eliminates the syntax error.  I can't
vouch for its correctness.

<pre>
        if [ -d "$link" ] && ! [ -L "$link" ] \
           && dpkg --compare-versions "$2" lt-nl 9.04.6
        then
</pre>

-- 
package ubuntu-docs 9.04.6 failed to install/upgrade: 
https://bugs.launchpad.net/bugs/354527
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

Reply via email to