Comment 2 for bug 606551

Revision history for this message
Michael Wagner (wagnerm) wrote :

The postinst script gets/expects a wrong error code from dpkg-query. Replacing the occurrences of

stat=$(dpkg-query -W -f='${Status}' texlive-base)

with

stat=$(dpkg-query -W -f='${Status}' texlive-base || /bin/true)

resolves the issue.

See attached file (postinst.in.patch).