From mboxrd@z Thu Jan 1 00:00:00 1970 From: Achim Gratz Subject: Re: Correct / best way of loading packages in contrib when using org compiled from git? Date: Fri, 22 Feb 2013 15:42:20 +0000 (UTC) Message-ID: References: <51260B51.2060006@gmail.com> <877gm0wjq5.fsf@bzg.ath.cx> <51277BD1.8080707@gmail.com> <87txp4whac.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:37391) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U8ulk-0005Aw-9z for emacs-orgmode@gnu.org; Fri, 22 Feb 2013 10:42:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U8ulg-0004XT-2H for emacs-orgmode@gnu.org; Fri, 22 Feb 2013 10:42:40 -0500 Received: from plane.gmane.org ([80.91.229.3]:34743) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U8ulf-0004XN-Rz for emacs-orgmode@gnu.org; Fri, 22 Feb 2013 10:42:35 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1U8uly-0003Tq-Ow for emacs-orgmode@gnu.org; Fri, 22 Feb 2013 16:42:54 +0100 Received: from 217.10.52.10 ([217.10.52.10]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 22 Feb 2013 16:42:54 +0100 Received: from Stromeko by 217.10.52.10 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 22 Feb 2013 16:42:54 +0100 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 Bastien altern.org> writes: > > Just for clarifications: is there any problem with adding > > > > ORG_ADD_CONTRIB = * > > > > to the local.mk file, apart from slightly longer compilation times? > > This should be okay, but it's not safe. If any non-emacs-lisp > file gets added to contrib/lisp/ (e.g. a README file) then you > will try to compile non-elisp files. *\.el is safer. This is a globbing pattern, not a regular expression, hence: "*.el", but that would also pull in htmlize which you most likely don't want, so you might follow the lead in server.mk and make that "org-*" or "org-*.el" if you are worried that the Org maintainer forgets that only lisp files should go into the lisp directory. :-) Regards, Achim.