From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Angelo Graziosi Newsgroups: gmane.emacs.devel Subject: Re: make bootsrap problems Date: Wed, 28 May 2008 09:57:47 +0200 Message-ID: <483D107B.60804@alice.it> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1211961535 13320 80.91.229.12 (28 May 2008 07:58:55 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 28 May 2008 07:58:55 +0000 (UTC) Cc: rgm@gnu.org To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed May 28 09:59:36 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 1K1GZK-00007S-Rs for ged-emacs-devel@m.gmane.org; Wed, 28 May 2008 09:59:35 +0200 Original-Received: from localhost ([127.0.0.1]:44453 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K1GYZ-0003c2-DE for ged-emacs-devel@m.gmane.org; Wed, 28 May 2008 03:58:47 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K1GY3-0003U8-Go for emacs-devel@gnu.org; Wed, 28 May 2008 03:58:15 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K1GY2-0003Tw-KM for emacs-devel@gnu.org; Wed, 28 May 2008 03:58:15 -0400 Original-Received: from [199.232.76.173] (port=37100 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K1GY2-0003Tt-Fy for emacs-devel@gnu.org; Wed, 28 May 2008 03:58:14 -0400 Original-Received: from smtp-out113.alice.it ([85.37.17.113]:2084) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K1GXx-0006oS-QD; Wed, 28 May 2008 03:58:09 -0400 Original-Received: from FBCMMO01.fbc.local ([192.168.68.195]) by smtp-out113.alice.it with Microsoft SMTPSVC(6.0.3790.1830); Wed, 28 May 2008 09:58:08 +0200 Original-Received: from FBCMCL01B04.fbc.local ([192.168.69.85]) by FBCMMO01.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Wed, 28 May 2008 09:58:07 +0200 Original-Received: from [87.1.235.247] ([87.1.235.247]) by FBCMCL01B04.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Wed, 28 May 2008 09:58:06 +0200 User-Agent: Thunderbird 2.0.0.14 (Windows/20080421) X-OriginalArrivalTime: 28 May 2008 07:58:06.0792 (UTC) FILETIME=[9042D480:01C8C098] X-detected-kernel: by monty-python.gnu.org: Windows 2000 SP4, XP SP1+ 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:97874 Archived-At: Glenn Morris wrote: > I think I see what's going on now. I'm guessing you have /bin/sh > pointing to zsh. zsh's echo behaves differently from bash's with > regards to these backslash escapes: > > bash> echo "ELCFILES = \\\\\\" -> ELCFILES = \\\ > zsh> echo "ELCFILES = \\\\\\" -> ELCFILES = \\ I have GNU/Linux Kubuntu 8.04 and bash: $ echo $SHELL /bin/bash Running the above command from Makefile (make update-elcfiles) prints, in temp.sed, ELCFILES = \\ Instead, running from command line ELCFILES = \\\ There is a bug somewhere. Perhaps, in 'Hardy' ? Cheers, Angelo.