From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Zeller Subject: Errors in git? Date: Mon, 03 Aug 2009 02:18:44 -0700 Message-ID: <8763d55k7f.fsf@zeller.michaelzeller.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MXthw-0006sC-NY for emacs-orgmode@gnu.org; Mon, 03 Aug 2009 05:19:52 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MXthr-0006r8-R0 for emacs-orgmode@gnu.org; Mon, 03 Aug 2009 05:19:51 -0400 Received: from [199.232.76.173] (port=60276 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MXthr-0006r5-CA for emacs-orgmode@gnu.org; Mon, 03 Aug 2009 05:19:47 -0400 Received: from mail-pz0-f197.google.com ([209.85.222.197]:57332) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MXthq-0003qE-Ua for emacs-orgmode@gnu.org; Mon, 03 Aug 2009 05:19:47 -0400 Received: by pzk35 with SMTP id 35so2648028pzk.24 for ; Mon, 03 Aug 2009 02:19:46 -0700 (PDT) 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: Org Mode List Hello, I just cloned git on a remote machine, and I'm getting the following error using Emacs 23.1.50.2 to "make install". I just tried on two machines. Wrote /home/zellerm/workspace/opt/org-mode/lisp/org-agenda.elc emacs -batch -q -eval "(progn (add-to-list (quote load-path) \"~/workspace/opt/emacs/share/emacs/site-lisp\") (add-to-list (quote load-path) (expand-file-name \"./lisp/\")))" -f batch-byte-compile lisp/org-ascii.el In toplevel form: lisp/org-ascii.el:29:1:Error: Symbol's function definition is void: backup-inhibited make: *** [lisp/org-ascii.elc] Error 1 I had to change org-exp.el to compile: diff --git a/lisp/org-exp.el b/lisp/org-exp.el index 98de3cb..dbeaefc 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -2511,8 +2511,8 @@ directory." (file-truename bfname)) (concat (file-name-sans-extension filename) "-source." - (file-name-extension filename))))) - filename))) + (file-name-extension filename)))) + filename) (backup-inhibited t) (buffer (find-file-noselect filename)) (region (buffer-string))) Apologies if this is just something I did wrong, but all I did was git clone and change the Makefile! Not sure how the mismatched parens creeped in. Thanks, ~Michael Zeller