From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ecce Berlin Subject: Re: file location Date: Sun, 7 Feb 2010 14:00:51 +0100 Message-ID: <80914731002070500o627235f4w12a25a14476a0491@mail.gmail.com> References: <823b38421002051711oa00fe7fxc9334c383209aafe@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ne6l3-00026F-Tf for emacs-orgmode@gnu.org; Sun, 07 Feb 2010 08:01:01 -0500 Received: from [140.186.70.92] (port=33059 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ne6l2-000255-Fe for emacs-orgmode@gnu.org; Sun, 07 Feb 2010 08:01:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Ne6l2-0004An-1w for emacs-orgmode@gnu.org; Sun, 07 Feb 2010 08:01:00 -0500 Received: from mail-ew0-f228.google.com ([209.85.219.228]:35751) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Ne6l1-0004Ag-RS for emacs-orgmode@gnu.org; Sun, 07 Feb 2010 08:00:59 -0500 Received: by ewy28 with SMTP id 28so1233331ewy.8 for ; Sun, 07 Feb 2010 05:00:51 -0800 (PST) In-Reply-To: <823b38421002051711oa00fe7fxc9334c383209aafe@mail.gmail.com> 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 On Sat, Feb 6, 2010 at 2:11 AM, Shawn Koons wrote: > Hello, > Is there a command (or two) that will identify the locations of the > below-listed files/folders? I am using Ubuntu and it seems that there is > more than one emacs install on this computer and multiple files that could > The following is from the #makefile# found in the org.mode folder downloaded > from the repository. > ##---------------------------------------------------------------------- > ## YOU MUST EDIT THE FOLLOWING LINES > ##---------------------------------------------------------------------- > # Name of your emacs binary > EMACS=?? > # Where local software is found > prefix=/usr/local > # Where local lisp files go. > lispdir = $(prefix)/share/emacs/site-lisp > # Where info files go. > infodir = $(prefix)/share/infos > Thanks, > Shawn Hi, if you did not compile emacs yourself, you at least have to change: ---------- prefix=/usr ---------- You can list your emacs binaries like this: $ ls -l /usr/bin/emacs* If installing for emacs-snapshot, you need to change in addition: ---------- lispdir = $(prefix)/share/emacs-snapshot/site-lisp/org-mode infodir = $(prefix)/share/info ---------- Also note that the shipped install-info targets do not work on Ubuntu, I add this to the Makefile: ,----[ Makefile ] ! install-info-ubuntu: $(INFOFILES) ! if [ ! -d $(infodir) ]; then $(MKDIR) $(infodir); else true; fi ; ! $(CP) $(INFOFILES) $(infodir) ! $(INSTALL_INFO) --infodir=$(infodir) $(INFOFILES) `---- Then run: $ sudo make install-info-ubuntu More details about emacs in Debian/Ubuntu are here: http://www.debian.org/doc/packaging-manuals/debian-emacs-policy EB