From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Miguel A. Figueroa-Villanueva" Subject: Makefile fix? Date: Sun, 8 Jul 2007 14:21:50 -0400 Message-ID: <17f71bca0707081121s1f52fd7l62066e7677f02c09@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I7bOP-0007Qw-Fq for emacs-orgmode@gnu.org; Sun, 08 Jul 2007 14:21:57 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I7bON-0007QC-Pb for emacs-orgmode@gnu.org; Sun, 08 Jul 2007 14:21:57 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I7bON-0007Q6-Fj for emacs-orgmode@gnu.org; Sun, 08 Jul 2007 14:21:55 -0400 Received: from mu-out-0910.google.com ([209.85.134.185]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1I7bON-0000Fc-3O for emacs-orgmode@gnu.org; Sun, 08 Jul 2007 14:21:55 -0400 Received: by mu-out-0910.google.com with SMTP id g7so485295muf for ; Sun, 08 Jul 2007 11:21:50 -0700 (PDT) Content-Disposition: inline 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: emacs-orgmode@gnu.org Hello Everyone, First of all thanks for creating such a great tool!! Kudos Dominik!! Now, I updated orgmode and had minor problems with the installation. The problem was because I use XEmacs so it requires the noutline.el installed. Since I edited the following entries: # Where local software is found prefix=/root_dir/svn/usr/local # Where local lisp files go. lispdir = $(prefix)/share/emacs when I type 'make install-noutline' it installs it in $(lispdir), which is what I wanted (i.e., not in the standard lisp directory). The $(lispdir) is of course added to the load-path in my init.el, but for the remaining compilation of org.el it won't know to look for noutline.el in there. Now, since we need noutline.el to compile org.el for XEmacs and we just installed it in $(lispdir), shouldn't the following line: BATCH=$(EMACS) -batch -q read like this instead: BATCH=$(EMACS) -batch -q -l $(lispdir)/noutline That is where my problem was and by making the change above it was fixed. Notice that if $(lispdir) is set to the standard lisp directory then the problem won't arise. Well, I hope that this helps in case others encounter the same problem. Thanks again, --Miguel