From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.bugs Subject: Re: Error trying to invoke the make program Date: Sat, 25 Aug 2007 14:04:49 +0300 Message-ID: References: <28893080E6C85A4A8BE5700F380B170405B11E91@srvexch02.federatedinv.com> <87tzqqklxs.fsf@cadilhac.name> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: sea.gmane.org 1188039953 7554 80.91.229.12 (25 Aug 2007 11:05:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 25 Aug 2007 11:05:53 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org, michael@cadilhac.name To: losmj@federatedinv.com Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sat Aug 25 13:05:49 2007 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IOtSK-0007AA-4E for geb-bug-gnu-emacs@m.gmane.org; Sat, 25 Aug 2007 13:05:48 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IOtSD-0000IR-BC for geb-bug-gnu-emacs@m.gmane.org; Sat, 25 Aug 2007 07:05:21 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IOtSA-0000Hx-N6 for bug-gnu-emacs@gnu.org; Sat, 25 Aug 2007 07:05:18 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IOtS2-0000Dq-MC for bug-gnu-emacs@gnu.org; Sat, 25 Aug 2007 07:05:17 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IOtS2-0000Di-HB for bug-gnu-emacs@gnu.org; Sat, 25 Aug 2007 07:05:10 -0400 Original-Received: from romy.inter.net.il ([213.8.233.24]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IOtRw-0006eO-KR for bug-gnu-emacs@gnu.org; Sat, 25 Aug 2007 07:05:09 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-84-228-237-6.inter.net.il [84.228.237.6]) by romy.inter.net.il (MOS 3.7.3-GA) with ESMTP id ISM23519 (AUTH halo1); Sat, 25 Aug 2007 14:04:43 +0300 (IDT) In-reply-to: (message from Eli Zaretskii on Fri, 24 Aug 2007 12:19:17 +0300) X-Detected-Kernel: FreeBSD 4.7-5.2 (or MacOS X 10.2-10.4) (2) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:16445 Archived-At: > Date: Fri, 24 Aug 2007 12:19:17 +0300 > From: Eli Zaretskii > Cc: bug-gnu-emacs@gnu.org, losmj@federatedinv.com > > > From: michael@cadilhac.name (=?iso-8859-1?Q?Micha=EBl?= Cadilhac) > > Date: Thu, 23 Aug 2007 22:58:23 +0200 > > Cc: bug-gnu-emacs@gnu.org > > > > http://thread.gmane.org/gmane.emacs.bugs/16314 > > > > Eli, I don't see any fix in the repository for that, is it normal? > > It is normal considering the fact that I didn't yet install any > changes to fix this. ;-) Fixed in the release branch now. The trunk should get an update soon. The patch is attached below, for the OP to use in order to complete the build. Thanks for reporting this. 2007-08-25 Eli Zaretskii * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff): Prepend "-" to the command, in case srcdir=. and file is copied into itself. Index: lib-src/Makefile.in =================================================================== RCS file: /cvsroot/emacs/emacs/lib-src/Makefile.in,v retrieving revision 1.153.2.1 retrieving revision 1.153.2.2 diff -u -r1.153.2.1 -r1.153.2.2 --- lib-src/Makefile.in 25 Jul 2007 05:06:11 -0000 1.153.2.1 +++ lib-src/Makefile.in 25 Aug 2007 10:58:54 -0000 1.153.2.2 @@ -268,18 +268,21 @@ all: ${DONT_INSTALL} ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} /* These targets copy the scripts into the build directory -so that they can be run from there in an uninstalled Emacs. */ +so that they can be run from there in an uninstalled Emacs. +The "-" is prepended because some versions of cp barf when +srcdir is the current directory, and thus the file will be +copied into itself. */ rcs2log: $(srcdir)/rcs2log - cp -p $(srcdir)/rcs2log rcs2log + -cp -p $(srcdir)/rcs2log rcs2log rcs-checkin: $(srcdir)/rcs-checkin - cp -p $(srcdir)/rcs-checkin rcs-checkin + -cp -p $(srcdir)/rcs-checkin rcs-checkin grep-changelog: $(srcdir)/grep-changelog - cp -p $(srcdir)/grep-changelog grep-changelog + -cp -p $(srcdir)/grep-changelog grep-changelog vcdiff: $(srcdir)/vcdiff - cp -p $(srcdir)/vcdiff vcdiff + -cp -p $(srcdir)/vcdiff vcdiff #ifdef MOVEMAIL_NEEDS_BLESSING blessmail: