#!/bin/sh

set -e

if [ "$1" = "configure" ]; then
    if ! test -z "$2" && ! test "$2" = "<unknown>"; then
      if dpkg --compare-versions "5.10.6-1.NO.20051203-1" gt "$2"; then
          rm -f /usr/share/emacs21/site-lisp/gnus/nnmaildir.elc
      fi
    fi
fi

#DEBHELPER#
