From: Russ Allbery Date: Fri, 13 Nov 2009 19:41:46 +0000 (-0800) Subject: Explicitly load org-ascii when generating text files X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=28418a454edbe84ee8793ca392a711a0998f6b10;p=debian%2Fdebian-policy.git Explicitly load org-ascii when generating text files Works around a problem with org-export-as-ascii not being apparently autoloaded on at least some systems. --- diff --git a/Makefile b/Makefile index c3e6b49..c6d3910 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ mime-policy.sgml: version.ent ifneq (,$(strip $(HAVE_ORG_EMACS))) %.txt: %.org - $(EMACS) --batch -Q -l ./README-css.el -l org --visit $^ \ + $(EMACS) --batch -Q -l ./README-css.el -l org -l org-ascii --visit $^ \ --funcall org-export-as-ascii >/dev/null 2>&1 test "$@" != "README.txt" || \ perl -pli -e 's,./Process.org,Process.txt,g' $@