From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martyn Jago Subject: Re: ca47d10e commit broke the build Date: Sat, 31 Dec 2011 18:44:56 +0000 Message-ID: References: <81vcoxb8rd.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:50400) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rh3vd-0008HP-Vr for emacs-orgmode@gnu.org; Sat, 31 Dec 2011 13:45:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rh3vc-0002lV-Ud for emacs-orgmode@gnu.org; Sat, 31 Dec 2011 13:45:13 -0500 Received: from lo.gmane.org ([80.91.229.12]:60064) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rh3vc-0002lQ-Ka for emacs-orgmode@gnu.org; Sat, 31 Dec 2011 13:45:12 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Rh3va-0002yS-LK for emacs-orgmode@gnu.org; Sat, 31 Dec 2011 19:45:10 +0100 Received: from 88-96-171-138.dsl.zen.co.uk ([88.96.171.138]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 31 Dec 2011 19:45:10 +0100 Received: from martyn.jago by 88-96-171-138.dsl.zen.co.uk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 31 Dec 2011 19:45:10 +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 Hi Jambunathan Jambunathan K 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 [...]