summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2016-10-19 00:29:11 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2016-10-19 00:29:11 +0200
commit3961822ee3552b801aec876b1ea8f762225e6ae0 (patch)
tree61f34a004eebadefdf8f04b82c8ba79af5700e2c
parent3c6c53d426085ed75f62099f00082d901e48cc4f (diff)
downloadorg-mode-3961822ee3552b801aec876b1ea8f762225e6ae0.tar.gz
server.mk: Properly use local variables in "pkg" files
Also remove reference to deleted file. Reported-by: Thierry Volpiatto <thierry.volpiatto@gmail.com> <http://permalink.gmane.org/gmane.emacs.orgmode/109833>
-rw-r--r--mk/server.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/mk/server.mk b/mk/server.mk
index a940ca3..deba7cd 100644
--- a/mk/server.mk
+++ b/mk/server.mk
@@ -67,8 +67,10 @@ elpa-dirty:
ln -s . $(ORGDIR)
echo "(define-package \"org\"" > org-pkg.el
echo " \"$(PKG_TAG)\" \"$(PKG_DOC)\" ($(PKG_REQ)))" >> org-pkg.el
+ echo ";; Local Variables:" >> org-pkg.el
echo ";; no-byte-compile: t" >> org-pkg.el
- tar --exclude=Makefile --exclude="org-colview-xemacs.el" \
+ echo ";; End:" >> org-pkg.el
+ tar --exclude=Makefile \
--transform='s:\(lisp\|doc\)/::' -cf $(ORGDIR).tar \
$(foreach dist, $(ORGELPA), $(ORGDIR)/$(dist))
-@$(RM) $(ORGDIR) org-pkg.el
@@ -88,8 +90,10 @@ elpaplus-dirty:
ln -s . $(ORGDIR)
echo "(define-package \"org-plus-contrib\"" > org-plus-contrib-pkg.el
echo " \"$(PKG_TAG)\" \"$(PKG_DOC)\" ($(PKG_REQ)))" >> org-plus-contrib-pkg.el
+ echo ";; Local Variables:" >> org-plus-contrib-pkg.el
echo ";; no-byte-compile: t" >> org-plus-contrib-pkg.el
- tar --exclude=Makefile --exclude="org-colview-xemacs.el" \
+ echo ";; End:" >> org-plus-contrib-pkg.el
+ tar --exclude=Makefile \
--transform='s:\(lisp\|doc\)/::' -cf $(ORGDIR).tar \
$(foreach dist, $(ORGELPAPLUS), $(ORGDIR)/$(dist))
-@$(RM) $(ORGDIR) org-plus-contrib-pkg.el