#!/bin/sh -e
# /usr/lib/emacsen-common/packages/remove/utop

FLAVOR=$1
PACKAGE=utop

if [ ${FLAVOR} != emacs ] && [ ${FLAVOR} != xemacs21 ]; then
    echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
    rm -f /usr/share/${FLAVOR}/site-lisp/${PACKAGE}.el
fi
