From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: how to stop using org-mode from /usr/local/share/emacs/24.3.92/lisp/org/ Date: Wed, 30 Jul 2014 23:37:43 -0400 Message-ID: <87zjfq8ago.fsf@gmail.com> References: <87fvhi37qt.fsf@skimble.plus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48710) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XChBs-0002ev-B9 for emacs-orgmode@gnu.org; Wed, 30 Jul 2014 23:38:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XChBm-0000j6-63 for emacs-orgmode@gnu.org; Wed, 30 Jul 2014 23:38:04 -0400 Received: from plane.gmane.org ([80.91.229.3]:58772) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XChBl-0000io-VX for emacs-orgmode@gnu.org; Wed, 30 Jul 2014 23:37:58 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XChBj-0006ij-Ld for emacs-orgmode@gnu.org; Thu, 31 Jul 2014 05:37:55 +0200 Received: from pool-173-48-174-104.bstnma.fios.verizon.net ([173.48.174.104]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 31 Jul 2014 05:37:55 +0200 Received: from ndokos by pool-173-48-174-104.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 31 Jul 2014 05:37:55 +0200 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: emacs-orgmode@gnu.org Sharon Kimble writes: > I've now got the maintenance branch, thanks for the pointers folks. > > This is what I've done - > > cd ~/git/org-mode-master > git checkout maint > git pull > make autoloads > make > make doc > sudo make install That will install org in a place like /usr/local/share/emacs/site-lisp/org (the exact location depends on makefile settings - check your local.mk for lispdir or do it again and see where the finall install command installs everything. > cd ~ > > I know from watching it when its building that I have version > 8.2.7c. But when I've reloaded org using the menu items = org -> > refresh/reload -> reload org after update, and then do M-x org-version > it shows > ╭──── > │Org-mode version 8.2.6 (release_8.2.6-1 @ /usr/local/share/emacs/24.3.92/lisp/org/) > ╰──── > I have this line in my 'init.el' > --8<---------------cut here---------------start------------->8--- > (setq load-path (cons "/home/boudiccas/git/org-mode-master" load-path)) > --8<---------------cut here---------------end--------------->8--- > > So how do I get it to only use the one from my init.el please? I've > never run into this problem before, and although I do remember hearing > about it, I can't recall the solution and there is no mention of it in > my "emacsinstructions.org" which is my repository for how to do various > things. > Add the install directory to your load-path instead: (add-to-list 'load-path "/usr/local/share/emacs/site-lisp/org") or whatever the correct value is in your case. -- Nick