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


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to