#!/bin/sh

set -e 

FLAVOR=$1
echo remove/artist: Handling removal of emacsen flavor ${FLAVOR}

if [ ${FLAVOR} != emacs ]; then
  echo emacsen-common: purging byte-compiled files for ${FLAVOR}
  rm -f /usr/share/${FLAVOR}/site-lisp/artist.elc
fi
exit 0
