From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.devel Subject: Re: changes in lisp/Makefile.in to resolve make bootstrap fail on cygwin native Date: Sat, 14 Feb 2004 14:02:56 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <7137-Sat14Feb2004140255+0200-eliz@elta.co.il> References: <4A432936-5EC9-11D8-B4C8-000A958866C4@qwest.net> Reply-To: Eli Zaretskii NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1076760297 9943 80.91.224.253 (14 Feb 2004 12:04:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 14 Feb 2004 12:04:57 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Sat Feb 14 13:04:51 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AryXT-00066a-00 for ; Sat, 14 Feb 2004 13:04:51 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1AryXT-0003Gg-00 for ; Sat, 14 Feb 2004 13:04:51 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AryX0-0004wo-Iq for emacs-devel@quimby.gnus.org; Sat, 14 Feb 2004 07:04:22 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AryW6-0004nA-IH for emacs-devel@gnu.org; Sat, 14 Feb 2004 07:03:26 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AryVK-0004Vi-0x for emacs-devel@gnu.org; Sat, 14 Feb 2004 07:03:09 -0500 Original-Received: from [192.114.186.18] (helo=bilbo.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AryVJ-0004U0-Db for emacs-devel@gnu.org; Sat, 14 Feb 2004 07:02:37 -0500 Original-Received: from zaretski (pns03-205-122.inter.net.il [80.230.205.122]) by bilbo.inter.net.il (MOS 3.4.4-GR) with ESMTP id CLV60162; Sat, 14 Feb 2004 14:02:23 +0200 (IST) Original-To: "Steven Wu" X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 1.8.9 In-reply-to: <4A432936-5EC9-11D8-B4C8-000A958866C4@qwest.net> (wus@qwest.net) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:19934 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:19934 > Date: Sat, 14 Feb 2004 01:39:23 -0700 > From: "Steven Wu" > > Thanks for Harald Maier's hints, and I patched the lisp/Makefile.in. It > seems to be the right thing to do. Here is the diff result: > > *** Makefile.in.~1.48.~ Fri Nov 7 18:38:07 2003 > --- Makefile.in Sat Feb 14 01:33:10 2004 > *************** > *** 150,161 **** > custom-deps: $(lisp)/cus-load.el doit > wd=$(lisp); $(setwins_almost); \ > echo Directories: $$wins; \ > ! $(EMACS) $(EMACSOPT) -l cus-dep --eval '(setq Please don't. Replacing "$(EMACS) $(EMACSOPT)" with "$(emacs)" breaks the build on those systems, like MS-DOS, which don't use a sh-compatible shell to build Emacs. We never needed to set EMACSLOADPATH explicitly in these targets. Please try to figure out why is this needed in your case.