From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Installing org-mode from git without byte-compiling Date: Sat, 01 Jan 2011 17:53:29 +0530 Message-ID: <818vz44xtq.fsf@gmail.com> References: <81fwtdchir.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=53071 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PZ0Ui-000723-Nj for emacs-orgmode@gnu.org; Sat, 01 Jan 2011 07:23:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PZ0Uh-0006i4-Pr for emacs-orgmode@gnu.org; Sat, 01 Jan 2011 07:23:36 -0500 Received: from smtpauth05.prod.mesa1.secureserver.net ([64.202.165.99]:39348) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1PZ0Uh-0006hV-Hr for emacs-orgmode@gnu.org; Sat, 01 Jan 2011 07:23:35 -0500 In-Reply-To: <81fwtdchir.fsf@gmail.com> (Jambunathan K.'s message of "Sat, 01 Jan 2011 11:06:12 +0530") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Jeff Horn Cc: Org-mode ml >> Inspecting the Makefile, I see that I probably want to make the info >> documentation and have that installed automatically, I just don't want >> to byte-compile the lisp. > > $ make doc/org > > The above command will create a file named 'org' in the doc directory. > > Once this is done alter `Info-directory-list' with the following line in > your init file. > > (push "~/path/to/git/root/doc/" Info-directory-list) > > If you get some surprises, you can do a C-h v Info-directory-list and > make sure that the order of the dirs is just as you want it. > I typed the earlier mail from memory. This is the sequence that package manager uses: #+begin_src emacs-lisp (require 'info) (info-initialize) (push pkg-dir Info-directory-list) #+end_src The first two lines were missing in my earlier post. Furthermore, one can use the following to cherry pick the info file of interest: C-u M-x info RET doc/org HTH, Jambunathan K.