From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: ORG_ADD_CONTRIB and org-e-odt.el don't always play well together Date: Tue, 02 Oct 2012 16:38:40 -0400 Message-ID: <12642.1349210320@alphaville.americas.hpqcorp.net> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:51886) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJ9Ew-0005U3-QX for emacs-orgmode@gnu.org; Tue, 02 Oct 2012 16:38:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TJ9Eu-0003B0-MS for emacs-orgmode@gnu.org; Tue, 02 Oct 2012 16:38:49 -0400 Received: from g4t0014.houston.hp.com ([15.201.24.17]:16757) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJ9Eu-0003Ak-I7 for emacs-orgmode@gnu.org; Tue, 02 Oct 2012 16:38:48 -0400 Received: from g4t0018.houston.hp.com (g4t0018.houston.hp.com [16.234.32.27]) by g4t0014.houston.hp.com (Postfix) with ESMTP id E054B241DF for ; Tue, 2 Oct 2012 20:38:41 +0000 (UTC) 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 Cc: nicholas.dokos@hp.com I added the following to my local.mk ORG_ADD_CONTRIB = org-e-* so when I do "make autoloads" (running from the git directory and without compiling), it copies (among others) contrib/lisp/org-e-odt.el to lisp/: ,---- | $ make autoloads | make -C lisp autoloads | make[1]: Entering directory `/home/nick/src/emacs/org/org-mode/lisp' | rm -f org-version.el org-loaddefs.el org-version.elc org-loaddefs.elc | install -m 644 -p ../contrib/lisp/org-e-ascii.el ../contrib/lisp/org-e-beamer.el ../contrib/lisp/org-e-groff.el\ | ../contrib/lisp/org-e-html.el ../contrib/lisp/org-e-latex.el ../contrib/lisp/org-e-man.el\ | ../contrib/lisp/org-e-odt.el ../contrib/lisp/org-e-publish.el ../contrib/lisp/org-e-texinfo.el . | org-version: 7.9.2 (release_7.9.2-382-g1ef9ee) `---- When I then try to org-reload, I get an error because org-e-odt.el restricts the path of the style file to one of three choices (../../etc/styles, ../../etc/org, ../etc/org) relative to where org-e-odt.el is found. None of these is satisfactory in this context: it would have to be ../etc/styles. Nick