From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jude DaShiell Subject: Re: How to update "Info Documentation"? Date: Fri, 29 Jul 2011 06:25:36 -0400 (EDT) Message-ID: References: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([140.186.70.92]:49781) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QmkGA-0001qd-U9 for emacs-orgmode@gnu.org; Fri, 29 Jul 2011 06:25:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QmkGA-0006fP-4I for emacs-orgmode@gnu.org; Fri, 29 Jul 2011 06:25:38 -0400 Received: from shellworld.net ([69.60.117.94]:60519 helo=server1.shellworld.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QmkGA-0006f9-1S for emacs-orgmode@gnu.org; Fri, 29 Jul 2011 06:25:38 -0400 In-Reply-To: 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: suvayu ali Cc: emacs-orgmode@gnu.org 1) make sure prefix on line 16 of Makefile is set correctly, if your real prefix is /usr, that line shouldn't read /usr/local, 2) do make info-install and then do info org and see if the documentation doesn't suddenly update itself. hth.On Fri, 29 Jul 2011, suvayu ali wrote: > On Fri, Jul 29, 2011 at 11:34 AM, Johan Ekh wrote: > > Hi all, > > I keep up to date with org-mode using: > > > > git pull && make clean && make && make doc && make install > > > > It works very well except that my "Info Documentation" is not updated. > > It is still some old version. > > > > What do I have to do to get it updated? > > > > 3 options: > > 1. Set this variable to the appropriate path in your init file > > ;; Info directory > (add-to-list 'Info-default-directory-list > (expand-file-name "/opt/emacs-lisp/share/info")) > > 2. Add to the INFOPATH variable in your shell profile file: > > e.g. (bash) > ~/.bash_profile > .. > export INFOPATH=/opt/emacs-lisp/share/info:$INFOPATH > > 3. Edit your Makefile to reflect the proper infopath > > # Where local software is found > prefix=/opt/emacs-lisp > > .. > > # Where info files go. > infodir = $(prefix)/share/info > > > > BR / Johan > > > > Hope this helps. > >