[Pkg-erlang-commits] r1264 - erlang/trunk/debian
sgolovan at alioth.debian.org
sgolovan at alioth.debian.org
Tue Jul 13 07:33:18 UTC 2010
Author: sgolovan
Date: 2010-07-13 07:33:07 +0000 (Tue, 13 Jul 2010)
New Revision: 1264
Modified:
erlang/trunk/debian/changelog
erlang/trunk/debian/erlang-mode.emacsen-install
Log:
[erlang]
* Don't bytecompile erlang-flymake.el for Emacs flavors emacs21 and for
all versions of Xemacs because they don't contain flymake
(closes: #588474).
Modified: erlang/trunk/debian/changelog
===================================================================
--- erlang/trunk/debian/changelog 2010-07-05 19:27:35 UTC (rev 1263)
+++ erlang/trunk/debian/changelog 2010-07-13 07:33:07 UTC (rev 1264)
@@ -1,8 +1,10 @@
-erlang (1:14.a-dfsg-2) UNRELEASED; urgency=low
+erlang (1:14.a-dfsg-2) unstable; urgency=low
- * NOT RELEASED YET
+ * Don't bytecompile erlang-flymake.el for Emacs flavors emacs21 and for
+ all versions of Xemacs because they don't contain flymake
+ (closes: #588474).
- -- Sergei Golovan <sgolovan at debian.org> Sun, 27 Jun 2010 20:15:14 +0400
+ -- Sergei Golovan <sgolovan at debian.org> Tue, 13 Jul 2010 11:32:01 +0400
erlang (1:14.a-dfsg-1) unstable; urgency=low
Modified: erlang/trunk/debian/erlang-mode.emacsen-install
===================================================================
--- erlang/trunk/debian/erlang-mode.emacsen-install 2010-07-05 19:27:35 UTC (rev 1263)
+++ erlang/trunk/debian/erlang-mode.emacsen-install 2010-07-13 07:33:07 UTC (rev 1264)
@@ -32,7 +32,11 @@
install -m 755 -d ${ELCDIR}
cd ${ELDIR}
-FILES=`echo *.el`
+if [ ${FLAVOR} = emacs21 -o ${FLAVORTEST} = xemacs ]; then
+ FILES=`echo *.el | sed s/erlang-flymake.el//`
+else
+ FILES=`echo *.el`
+fi
cp ${FILES} ${ELCDIR}
cd ${ELCDIR}
More information about the Pkg-erlang-commits
mailing list