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 <ekh.jo...@gmail.com> 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. > >