John Hendy <jw.he...@gmail.com> wrote: > On Tue, Jul 17, 2012 at 11:10 AM, Rian Murphy <rianmur...@yahoo.com> wrote: > > Christopher Witte <chris <at> witte.net.au> writes: > > > >> > >> On 17 July 2012 16:53, Rian Murphy <rianmurphy <at> yahoo.com> wrote: > >> > Giovanni Ridolfi <giovanni.ridolfi <at> yahoo.it> writes: > >> > ... > >> >> > I'd prefer to use capture on my Ubuntu installation. I searched the > >> >> > gmane > >> >> > archives and didn't find any clues. > >> >> > > ... > >> > >> Upgrading org is easy and there are instructions in the FAQ, > >> http://orgmode.org/worg/org-faq.html#updating-org > >> > >> Chris. > >> > >> > > Chris, thanks for your help. I should have looked in the org-mode > > FAQ to start with -- I apologize. > > Oddly, however, when I do a 'git pull' and a 'make up2', then restart > > emacs, 'org-version' still tells me I have version 6.30c. > > 'emacs-version' still says 23.1.50.1. > > Maybe it's a Ubuntu thing.... Thanks again, R.M. > > I've not used `make up2`, so I can't comment on how that's working. It > might help if you clearly listed the specific steps you used to get > orgmode from git.
The Makefile in the main org directory pulls in targets.mk and in there you will find: ,---- | ... | up0 up1 up2:: | git remote update | git pull | up1 up2:: all | $(MAKE) test-dirty | up2 update2:: | $(SUDO) $(MAKE) install | ... `---- so ``make up2'' does the ``git pull'', runs the test suite and then runs ``make install'' (default.mk even sets SUDO, so the make install is run with superuser privileges :-) ). Nick