-ocaml (3.10.0-5) UNRELEASED; urgency=low
+ocaml (3.10.0-5) experimental; urgency=low
+
+ [ Ralf Treinen ]
- * NOT RELEASED YET
+ * ocaml-mode.emacsen-install: do not hardcode the emacs flavours for which
+ to compile ocaml-mode (closes: Bug#433082)
- -- Stefano Zacchiroli <zack@debian.org> Wed, 04 Jul 2007 11:28:02 +0000
+ -- Ralf Treinen <treinen@debian.org> Wed, 18 Jul 2007 18:31:31 +0200
ocaml (3.10.0-4) experimental; urgency=low
FLAVOR=$1
PACKAGE=ocaml-mode
-case ${FLAVOR} in
- emacs20|emacs21|xemacs21|emacs-snapshot)
- ;;
- *)
- echo install/${PACKAGE}: Ignoring emacsen flavor ${FLAVOR}
- exit 0
- ;;
-esac
+if [ ${FLAVOR} = emacs ]; then exit 0; fi
echo install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR}
cd ${ELDIR}
case "${FLAVOR}" in
- emacs20 | emacs21 | emacs-snapshot)
- FILES=`ls *.el | grep -v caml-xemacs`
- ;;
-
xemacs21)
FILES=`ls *.el | grep -v caml-emacs`
;;
+
*)
- ;;
+ FILES=`ls *.el | grep -v caml-xemacs`
+ ;;
+
esac
cp ${FILES} ${ELCDIR}
cd ${ELCDIR}