#!/bin/sh

for i in cxref.el cflow.el; do
    
    j=/etc/emacs/site-start.d/50$i
    if [ -f $j ] ; then
	rm $j
    fi

done

