From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Cleaning up my org setup, using version from git Date: Fri, 22 Mar 2013 18:27:33 -0400 Message-ID: <7644.1363991253@alphaville> References: <6066.1363986172@alphaville> Reply-To: nicholas.dokos@hp.com Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:42663) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UJAR0-0004pQ-D1 for emacs-orgmode@gnu.org; Fri, 22 Mar 2013 18:27:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UJAQz-0003xy-8M for emacs-orgmode@gnu.org; Fri, 22 Mar 2013 18:27:38 -0400 Received: from g1t0026.austin.hp.com ([15.216.28.33]:29698) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UJAQz-0003xs-0e for emacs-orgmode@gnu.org; Fri, 22 Mar 2013 18:27:37 -0400 In-Reply-To: Message from Marcelo de Moraes Serpa of "Fri\, 22 Mar 2013 15\:54\:45 MDT." List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Marcelo de Moraes Serpa Cc: Org Mode , "Thomas S. Dye" Marcelo de Moraes Serpa wrote: > On Fri, Mar 22, 2013 at 3:35 PM, Thomas S. Dye wrote: >=20 > Did you `make autoloads'? > Yes, >=20 > org git:(master): make autoloads > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D > =3D Invoke "make help" for a synopsis of make targets. =3D > =3D Created a default=C2=A0local.mk=C2=A0template. =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =3D > =3D Setting "oldorg" as the default target. =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0=3D > =3D Please adapt=C2=A0local.mk=C2=A0to your local setup! =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D > End of file during parsing > make: [local.mk] Error 255 (ignored) > make -C lisp autoloads > rm -f org-version.el org-loaddefs.el org-version.elc org-loaddefs.elc= org-install.elc > org-version: 8.0-pre (release_8.0-pre-150-g412d98) > End of file during parsing > make[1]: *** [org-version.el] Error 255 > make: *** [autoloads] Error 2 >=20 Well, you issued the command but the make failed. So you need to investigate why it is failing. `make autoloads' removes some existing files and then tries to rebuild them. One of those is org-loaddefs.el - the fact that you don't have it shows that the rebuild failed. The rebuild is done by this rule in lisp/Makefile: ,---- | autoloads: cleanauto addcontrib $(LISPI) $(LISPV) |=20 | $(LISPV): $(LISPF) | @echo "org-version: $(ORGVERSION) ($(GITVERSION))" | @$(RM) $(@) | @$(MAKE_ORG_VERSION) `---- and MAKE_ORG_VERSION is defined in mk/default.mk: ,---- | # Using emacs in batch mode. | # BATCH =3D $(EMACS) -batch -vanilla # XEmacs | BATCH =3D $(EMACS) -batch -Q | | # Emacs must be started in lisp directory | BATCHL =3D $(BATCH) \ | --eval '(add-to-list '"'"'load-path ".")' |=20 | # How to generate org-version.el | MAKE_ORG_VERSION =3D $(BATCHL) \ | --eval '(load "org-compat.el")' \ | --eval '(load "../mk/org-fixup.el")' \ | --eval '(org-make-org-version "$(ORGVERSION)" "$(GITVERSION)" "$(datad= ir)")' `---- But you have a syntax error in some file (End of file during parsing - as I= said, probably a missing paren or some such) that causes emacs to exit abnormally. Nick