Comment 3 for bug 259351

Revision history for this message
Andrew Starr-Bochicchio (andrewsomething) wrote :

Linked Debian bug which includes a proposed fix quoted below:

jadetex.postrm unconditionally invokes update-texmf on purge, but by
that time, tex-common may have been removed. You should wrap the
invocation with something like:

  if [ -x "`which update-texmf 2>/dev/null`" ]; then
      update-texmf
  fi