#!/bin/sh

set -e
set -x

FLAVOR=$1

echo emacsen-common: Handling removal of emacsen flavor ${FLAVOR}

echo emacsen-common: purging byte-compiled files for ${FLAVOR}
rm -f /etc/${FLAVOR}/site-start.d/00debian-vars.elc \
      /usr/share/${FLAVOR}/site-lisp/debian-startup.elc

exit 0;
