From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: [ANN] Org-babel integrated into Org-mode Date: Tue, 29 Jun 2010 18:12:55 -0400 Message-ID: <16631.1277849575@alphaville.usa.hp.com> References: <87wrtp78rg.fsf@gmail.com> <874oglofzs.fsf@fastmail.fm> <10278.1277838511@alphaville.usa.hp.com> <87vd91mu2m.fsf@fastmail.fm> Reply-To: nicholas.dokos@hp.com Return-path: Received: from [140.186.70.92] (port=40484 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTj35-0006JH-6b for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 18:13:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OTj33-0000iU-T2 for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 18:12:59 -0400 Received: from g4t0014.houston.hp.com ([15.201.24.17]:15830) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OTj33-0000iI-JT for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 18:12:57 -0400 In-Reply-To: Message from Matt Lundin of "Tue, 29 Jun 2010 17:01:53 EDT." <87vd91mu2m.fsf@fastmail.fm> 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: Matt Lundin Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org Matt Lundin wrote: > > > >> When I run make clean && make && make install I find that the language > >> directory is not installed. Does the langs directory require a manual > >> installation? > >> > > > > It's part of the git repository, so it should be present after you do a > > git pull. > > My apologies if my question wasn't clear. Yes, I can see the langs > directory in the org-mode repo. The problem, however, is that "make > install" does not copy the lang files to the target lispdir (in my case, > /usr/local/share/emacs/site-lisp). I'm not sure about the conventional > way to handle such installation in a Makefile, but it seems that the > babel/langs/* files have to added to LISPF. > > > > >> Also, with make install, the ob-* files are installed on the same level > >> as the org-files, yet lines 108-114 in org.el indicate that they should > >> be installed in a babel subdirectory. > >> > > > > Not here: they end up in /lisp/babel. > > What does represent here? Are you invoking "make install" to > install to a target directory (lispdir) or are you simply leaving the > compiled lisp files in place in the local org-mode repository? > > This section of the lisp file flattens out the lisp/babel hierarchy in > the repo when copying to the target directory: > > install-lisp: $(LISPFILES) $(ELCFILES) > if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ; > $(CP) $(LISPFILES) $(lispdir) > $(CP) $(ELCFILES) $(lispdir) > Ah, sorry for being dense: I forgot that I don't install - I run out of the git repository. Forgive my parochial view: there are indeed problems with the install target in the makefile. Nick