Hi Jambunathan

Jambunathan K <kjambunat...@gmail.com> writes:

> Martyn
>
> The probelmatic commit could actually be this:
>       commit - 07f006e4fd9a7b66643cd7b404c8994665ba8300
> which touches the Makefile.

The problem was indeed related to the Makefile - the thing that changed
(I'm guessing) is the use of the EMACS variable during `make install'
(re-compilation of org-odt)?

The solution was to change the test-build scripts from:

--8<---------------cut here---------------start------------->8---
make clean && make EMACS=/Applications/Emacs-2x.app/Contents/MacOS/Emacs &&
make install && make doc && /Applications/Emacs-2x.app/Contents/MacOS/Emacs -Q 
-batch -l
/Users/martyn/.cruise/projects/Org-mode_on_Emacs_24/work/testing/org-test.el
-eval "(setq org-confirm-babel-evaluate nil)" -f
org-test-run-batch-tests
--8<---------------cut here---------------end--------------->8---

...to:

--8<---------------cut here---------------start------------->8---
make clean && make EMACS=/Applications/Emacs-2x.app/Contents/MacOS/Emacs &&
make install EMACS=/Applications/Emacs-2x.app/Contents/MacOS/Emacs && make
doc EMACS=/Applications/Emacs-2x.app/Contents/MacOS/Emacs &&
/Applications/Emacs-2x.app/Contents/MacOS/Emacs -Q -batch -l
/Users/martyn/.cruise/projects/Org-mode_on_Emacs_24/work/testing/org-test.el
-eval "(setq org-confirm-babel-evaluate nil)" -f
org-test-run-batch-tests
--8<---------------cut here---------------end--------------->8---

...since the compile version was detected to be incompatible (EMACS was
defaulting to v22.1.1 during make install).

This fixes my v24 and v23 test builds.

There is a broken test under v22 which I will look at in the near
future.

Best, Martyn

[...]



Reply via email to