From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andrea Crotti Newsgroups: gmane.emacs.help Subject: Re: tramp & numberp Date: Tue, 26 Oct 2010 10:14:58 +0200 Message-ID: References: <871v7f37lj.fsf@gmx.de> <87lj5msjex.fsf@gmx.de> <8762wq1odc.fsf@gmx.de> <871v7e1m48.fsf@gmx.de> <87zku274yr.fsf@gmx.de> <87sjzu70du.fsf@gmx.de> <87vd4q15wc.fsf@gmx.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1288080953 24929 80.91.229.12 (26 Oct 2010 08:15:53 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 26 Oct 2010 08:15:53 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Oct 26 10:15:50 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PAeh7-0000Bd-5d for geh-help-gnu-emacs@m.gmane.org; Tue, 26 Oct 2010 10:15:45 +0200 Original-Received: from localhost ([127.0.0.1]:58241 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PAeh5-0000cH-Sv for geh-help-gnu-emacs@m.gmane.org; Tue, 26 Oct 2010 04:15:43 -0400 Original-Received: from [140.186.70.92] (port=55120 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PAega-0000bv-3S for help-gnu-emacs@gnu.org; Tue, 26 Oct 2010 04:15:14 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PAegY-0008KS-UE for help-gnu-emacs@gnu.org; Tue, 26 Oct 2010 04:15:11 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]:49963) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PAegY-0008Jq-Jr for help-gnu-emacs@gnu.org; Tue, 26 Oct 2010 04:15:10 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PAegV-0008PH-KE for help-gnu-emacs@gnu.org; Tue, 26 Oct 2010 10:15:07 +0200 Original-Received: from ip1-201.halifax.rwth-aachen.de ([137.226.108.201]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 26 Oct 2010 10:15:07 +0200 Original-Received: from andrea.crotti.0 by ip1-201.halifax.rwth-aachen.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 26 Oct 2010 10:15:07 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 53 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: ip1-201.halifax.rwth-aachen.de User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (darwin) Cancel-Lock: sha1:SLx3gDGPudDqB0rUNcvQn9UQvYc= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:75229 Archived-At: > > I've checked the Makefile, again. I have the impression, that the > configure call did a wrong expansion of @abs_builddir@. Could you, > please, adapt the setting in Makefile (line 36) by > > builddir = /Users/andrea/Documents/pycon/tramp/lisp > > Afterwards, you must call "make" again. > > Best regards, Michael. The bad news is that that variable is already correct, and nonetheless I get the same error. And I also tried on a linux 64 machine and it goes also wrong (another path though). --8<---------------cut here---------------start------------->8--- Opening output file: no such file or directory, /tmp/emacs/trunk/src/emacs-23.2/lisp/tramp-loaddefs.el --8<---------------cut here---------------end--------------->8--- It might be here the problem --8<---------------cut here---------------start------------->8--- tramp-loaddefs.el: $(LISP_FILES) # XEmacs must be advised to put tramp.el definitions at the beginning. # We redefine `autoload-trim-file-name', therefore. $(EM) -l autoload \ --eval "(setq generate-autoload-cookie \";;;###tramp-autoload\")" \ --eval "(setq generated-autoload-file \"$@\")" \ --eval "(setq make-backup-files nil)" \ --eval "(unless (string-equal \"$(EMACS_INFO)\" \"emacs\") \ (defalias 'autoload-trim-file-name \ 'file-name-sans-extension))" \ -f batch-update-autoloads $(builddir) # XEmacs uses hard coded feature `lisp-autoloads'. @sed -e s/lisp-autoloads/tramp-loaddefs/g $@ >$@.$$$$ && \ mv -f $@.$$$$ $@ # Emacs 22 does not add the `provide' form to the generated loaddefs.el. @grep -q provide $@ || echo "(provide 'tramp-loaddefs)" >>$@ --8<---------------cut here---------------end--------------->8--- but it's really strange that only to me it's not working, I might be doing something wrong but. --8<---------------cut here---------------start------------->8--- cd tramp autoconf ./configure --with-contrib make --8<---------------cut here---------------end--------------->8--- should not be too complicated right?