Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: > David Masterson <dsmaster...@outlook.com> writes: > >> Subject says it all -- I didn't have orgguide in the installation of the >> org-9.3 package, so I pulled the latest git master and copied it from >> there. I guess the build process needs a fix. > > AFAICT, the build process properly generates the texinfo file for the > Org guide. It may be an issue related to how Org was merged with Emacs. > > I'm Cc'ing Kyle, as I think he has write access to Emacs repository, and > can fix it.
Sorry, I don't have write access. But this issue seems to be about the Org ELPA tarball, so I don't understand how it'd be related to the recent Org sync with the Emacs repo. Checking the tarball at <https://elpa.gnu.org/packages/org-9.3.tar> as well as some recent ones at <https://orgmode.org/elpa/>, I didn't spot orgguide in any of them. And when I run `make elpa' from the Org repo, the tarball indeed seems to be missing the orgguide info file. Assuming there's not a good reason that orgguide is omitted, I think fixing this is just a matter of adding orgguide to server.mk's ORGELPA variable. -- >8 -- Subject: [PATCH] server.mk: Add orgguide to ELPA package * mk/server.mk (ORGELPA): Include orgguide. Reported-by: David Masterson <dsmaster...@outlook.com> --- mk/server.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/server.mk b/mk/server.mk index 94818bb84..2c5294507 100644 --- a/mk/server.mk +++ b/mk/server.mk @@ -38,7 +38,7 @@ ORGFULL = README COPYING lisp/ \ etc/ contrib/ doc/ testing/ ORGFULL := $(ORGFULL:%/=%/*) ORGELPA = README_ELPA COPYING etc/ORG-NEWS lisp/ \ - doc/dir doc/org doc/orgcard.pdf \ + doc/dir doc/org doc/orgguide doc/orgcard.pdf \ etc/styles/ org-pkg.el ORGELPA := $(ORGELPA:%/=%/*) ORGELPAPLUS := $(ORGELPA:org-pkg%=org-plus-contrib-pkg%) -- 2.24.0