From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "d.henman" Newsgroups: gmane.emacs.devel Subject: net/tramp build error Date: Tue, 04 Sep 2007 10:57:15 +0900 Message-ID: <20070904105715.2588@blackhawk> NNTP-Posting-Host: lo.gmane.org X-Trace: sea.gmane.org 1188871207 1849 80.91.229.12 (4 Sep 2007 02:00:07 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 4 Sep 2007 02:00:07 +0000 (UTC) To: Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Sep 04 04:00:05 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1ISNhs-0008K1-AO for ged-emacs-devel@m.gmane.org; Tue, 04 Sep 2007 03:59:56 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ISNhr-0007B0-1g for ged-emacs-devel@m.gmane.org; Mon, 03 Sep 2007 21:59:55 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ISNfI-0005ws-UP for emacs-devel@gnu.org; Mon, 03 Sep 2007 21:57:16 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ISNfH-0005vl-6Q for emacs-devel@gnu.org; Mon, 03 Sep 2007 21:57:16 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ISNfH-0005ve-0Y for emacs-devel@gnu.org; Mon, 03 Sep 2007 21:57:15 -0400 Original-Received: from mail2.asahi-net.or.jp ([202.224.39.198] helo=mail.asahi-net.or.jp) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1ISNfG-0006k6-G6 for emacs-devel@gnu.org; Mon, 03 Sep 2007 21:57:14 -0400 Original-Received: from blackhawk (i230198.ppp.asahi-net.or.jp [61.125.230.198]) by mail.asahi-net.or.jp (Postfix) with ESMTP id 5860449B9B for ; Tue, 4 Sep 2007 10:57:13 +0900 (JST) Original-cc: X-Mailer: MH-E 8.0.3; GNU Mailutils 1.2.1; GNU Emacs 22.1.50 X-Detected-Kernel: Genre and OS details not recognized. X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:77709 Archived-At: I still encounter a bootstrap build error generated when compiling the emacs/lisp/net/tramp-fish.el file. ---- in brief: Compiling /usr/cvs/emacs/lisp/./net/tramp-cache.el Wrote /usr/cvs/emacs/lisp/net/tramp-cache.elc Compiling /usr/cvs/emacs/lisp/./net/tramp-fish.el Loading subst-ksc... Loading subst-gb2312... Loading subst-big5... Loading subst-jis... In toplevel form: net/tramp-fish.el:156:1:Error: Searching for program: no such file or directory, reg make[2]: *** [compile] Error 1 make[2]: Leaving directory `/usr/cvs/emacs/lisp' make[1]: *** [bootstrap-build] Error 2 make[1]: Leaving directory `/usr/cvs/emacs' make: *** [bootstrap] Error 2 ---- line 156 of tramp-fish.el where the build croaks is: --> (require 'tramp) ---- but the file tramp.el is in the directory ../emacs/lisp/net (listing ) ---- here is a directory snapshot of net after the build breakdown $ ls /usr/cvs/emacs/lisp/net/tramp* /usr/cvs/emacs/lisp/net/tramp-cache.el /usr/cvs/emacs/lisp/net/tramp-cache.elc /usr/cvs/emacs/lisp/net/tramp-fish.el /usr/cvs/emacs/lisp/net/tramp-ftp.el /usr/cvs/emacs/lisp/net/tramp-gw.el /usr/cvs/emacs/lisp/net/tramp-smb.el /usr/cvs/emacs/lisp/net/tramp-uu.el /usr/cvs/emacs/lisp/net/tramp.el /usr/cvs/emacs/lisp/net/trampver.el ---- Question: Would putting the 'require call inside an 'eval-when-compile solve my problem. Question: Why is compile not finding "tramp.el" (tramp.el isn't compiled till later the way the build process works, but it should append .el to the "tramp" and find it in the current working directory. Any help is greatly appreciated, Darel Henman