From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: [ANN] Org-babel integrated into Org-mode Date: Tue, 29 Jun 2010 17:01:53 -0400 Message-ID: <87vd91mu2m.fsf@fastmail.fm> References: <87wrtp78rg.fsf@gmail.com> <874oglofzs.fsf@fastmail.fm> <10278.1277838511@alphaville.usa.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=56239 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OThrE-0001t7-GL for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 16:56:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OThrC-0004Pd-FO for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 16:56:40 -0400 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:37950) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OThrC-0004PR-Cw for emacs-orgmode@gnu.org; Tue, 29 Jun 2010 16:56:38 -0400 In-Reply-To: <10278.1277838511@alphaville.usa.hp.com> (Nick Dokos's message of "Tue, 29 Jun 2010 15:08:31 -0400") 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: nicholas.dokos@hp.com, Eric Schulte Cc: emacs-orgmode@gnu.org Hi Nick, Nick Dokos writes: > 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: --8<---------------cut here---------------start------------->8--- install-lisp: $(LISPFILES) $(ELCFILES) if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir); else true; fi ; $(CP) $(LISPFILES) $(lispdir) $(CP) $(ELCFILES) $(lispdir) --8<---------------cut here---------------end--------------->8--- Thanks, Matt