From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel,gmane.emacs.pretest.bugs Subject: Re: bug#327: 23.0.60; make bootstrap fails from CVS Date: Tue, 27 May 2008 19:35:30 -0400 Message-ID: References: <86ej7nenp4.fsf@lifelogs.com> <868wxv73hy.fsf@lifelogs.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1211931454 6328 80.91.229.12 (27 May 2008 23:37:34 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 27 May 2008 23:37:34 +0000 (UTC) Cc: 327@emacsbugs.donarmstrong.com, emacs-pretest-bug@gnu.org To: Ted Zlatanov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed May 28 01:38:05 2008 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 1K18k0-0003CQ-EE for ged-emacs-devel@m.gmane.org; Wed, 28 May 2008 01:38:04 +0200 Original-Received: from localhost ([127.0.0.1]:45494 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K18jF-0001ty-37 for ged-emacs-devel@m.gmane.org; Tue, 27 May 2008 19:37:17 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K18jA-0001tr-GY for emacs-devel@gnu.org; Tue, 27 May 2008 19:37:12 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K18jA-0001tf-3L for emacs-devel@gnu.org; Tue, 27 May 2008 19:37:12 -0400 Original-Received: from [199.232.76.173] (port=53907 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K18j9-0001tc-SP for emacs-devel@gnu.org; Tue, 27 May 2008 19:37:11 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]:48874) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K18j9-0006u0-JK for emacs-devel@gnu.org; Tue, 27 May 2008 19:37:11 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1K18hW-0006Xm-9a; Tue, 27 May 2008 19:35:30 -0400 X-Spook: Plame Capricorn Rubin assassinate airframe Leuken-Baden X-Ran: bbFzs2j6SyB=CLWL3;{WeHa.bU;MuSQh/=;{^Q$Vfj~^3C3I0MZKnZ\W=E\27T`kc;cXdD X-Hue: black X-Attribution: GM User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:97844 gmane.emacs.pretest.bugs:22467 Archived-At: Ted Zlatanov wrote: > The change you introduced to lisp/Makefile.in on 2008-05-21 seems to be > the problem. I was in no doubt of that. :) What I don't see is how/where. > It looks like your changes use some bash features, which might be > the problem for me (I use zsh, I don't know what Make invokes). make uses SHELL = /bin/sh. The problem seems to be in the suffix rule. I don't get it. The simple test below works for me. Does it work for you? Save to lisp/XXX directory, and do `make -f XXX compile-main'. If it fails, the make -d output for calc-aent.elc ought to be informative. If it works, then I don't see what is wrong with the normal lisp/Makefile... PS your mail went to the wrong addresses. Rather than: 327@emacsbugs.donarmstrong.com, emacs-pretest-bug@gnu.org it went to emacs-pretest-bug@gnu.org and emacs-devel@gnu.org with a Followup-To: gmane.emacs.devel. Or at least, the copy I actually ended up reading did (there are often multiple copies of things flying around these days). SHELL = /bin/sh # works for me with /bin/zsh too EMACS = ../src/emacs EMACSOPT = -batch --no-site-file --multibyte lisp = $(PWD) emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT) ELCFILES = \ $(lisp)/abbrev.elc \ $(lisp)/calc/calc-aent.elc compile-main: $(ELCFILES) .SUFFIXES: .elc .el .el.elc: @echo Compiling $< @$(emacs) -f batch-byte-compile $<