From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Barton Subject: Re: canonical modifications to makefile for ubuntu feisty emacs 22.1.1? Date: Thu, 06 Sep 2007 08:47:55 +0100 Message-ID: <46DFB0AB.8020206@manor-farm.org> References: <46DEC069.6090900@cc.umanitoba.ca> <46DECC89.802@cc.umanitoba.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ITC6L-0002Cg-PH for emacs-orgmode@gnu.org; Thu, 06 Sep 2007 03:48:33 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ITC6K-0002Bj-HD for emacs-orgmode@gnu.org; Thu, 06 Sep 2007 03:48:33 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ITC6K-0002BY-A0 for emacs-orgmode@gnu.org; Thu, 06 Sep 2007 03:48:32 -0400 Received: from relay2.tidymail.co.uk ([217.146.107.7]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1ITC6J-0005yP-RW for emacs-orgmode@gnu.org; Thu, 06 Sep 2007 03:48:32 -0400 Received: from [217.146.125.43] (helo=firewall.banter.local) (from_AS 16353) by relay2.tidymail.co.uk with esmtp (Exim 4.67) id 1ITC6H-00025w-Vj for emacs-orgmode@gnu.org (return-path ); Thu, 06 Sep 2007 07:48:30 +0000 Received: from localhost (localhost [127.0.0.1]) by firewall.banter.local (Postfix) with ESMTP id BB25A648A14 for ; Thu, 6 Sep 2007 08:48:16 +0100 (BST) Received: from firewall.banter.local ([127.0.0.1]) by localhost (firewall.banter.local [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TqXWHVh7vhaa for ; Thu, 6 Sep 2007 08:48:01 +0100 (BST) Received: from [192.168.0.8] (unknown [192.168.0.8]) by firewall.banter.local (Postfix) with ESMTP id A1486648744 for ; Thu, 6 Sep 2007 08:47:56 +0100 (BST) In-Reply-To: <46DECC89.802@cc.umanitoba.ca> 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: emacs-orgmode@gnu.org >> At some point, I made a mess of things in upgrading org-mode; stupidly >> I sometimes modified the makefile so as to install the local lisp >> files to a local lisp tree ~/emacs/site-lisp (loaded by my .emacs) and >> sometimes so that they ended up in /usr/local/share/emacs/site-lisp. >> My bad. > Brian, Having got some similar holes in my feet I install in my /home directory. In my Makefile I have: # Where local software is found prefix=~/emacs # Where local lisp files go. lispdir = $(prefix)/org In my .emacs: (setq load-path (cons "~/emacs/org" load-path)) Thus any mistakes only affect my /home directory an so are more easily fixed. If you are the only user of the computer, this method works well. Ian.