From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Bootstrapping Emacs-CVS on Cygwin Date: Fri, 27 Jul 2007 13:27:55 +0300 Message-ID: References: Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: sea.gmane.org 1185532112 30721 80.91.229.12 (27 Jul 2007 10:28:32 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 27 Jul 2007 10:28:32 +0000 (UTC) Cc: emacs-devel@gnu.org To: Angelo Graziosi Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jul 27 12:28:26 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 1IEN3Z-0002ip-T6 for ged-emacs-devel@m.gmane.org; Fri, 27 Jul 2007 12:28:26 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IEN3Z-0002s6-7K for ged-emacs-devel@m.gmane.org; Fri, 27 Jul 2007 06:28:25 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IEN3T-0002rB-VW for emacs-devel@gnu.org; Fri, 27 Jul 2007 06:28:20 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IEN3R-0002qO-Kb for emacs-devel@gnu.org; Fri, 27 Jul 2007 06:28:18 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IEN3R-0002q0-5c for emacs-devel@gnu.org; Fri, 27 Jul 2007 06:28:17 -0400 Original-Received: from heller.inter.net.il ([213.8.233.23]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IEN3O-00051z-Rp for emacs-devel@gnu.org; Fri, 27 Jul 2007 06:28:15 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-83-130-3-118.inter.net.il [83.130.3.118]) by heller.inter.net.il (MOS 3.7.3a-GA) with ESMTP id DFI53317 (AUTH halo1); Fri, 27 Jul 2007 13:27:56 +0300 (IDT) In-reply-to: (message from Angelo Graziosi on Thu, 26 Jul 2007 22:44:59 +0200 (MET DST)) X-detected-kernel: FreeBSD 4.7-5.2 (or MacOS X 10.2-10.4) (2) 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:75649 Archived-At: > Date: Thu, 26 Jul 2007 22:44:59 +0200 (MET DST) > From: Angelo Graziosi > > > Copying etc/DOC-22.1.50.1 to > /tmp/emacs/inst/usr/local/emacs/share/emacs/22.1.50/etc ... > DOC-22.1.50.1 > rm: cannot remove `DOC': No such file or directory > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > > make: [install-arch-indep] Error 1 (ignored) > ^^^^^^^^^ > unset CDPATH; \ > ... > ======================================== > > This happens while running 'make install...'. Looks like this is on purpose, as this comment in Makefile.in says: ## Note that we copy DOC* and then delete DOC ## as a workaround for a bug in tar on Ultrix 4.2. The relevant line of the install-arch-indep commands is this: if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi and in your case, there's DOC-22.1.50.1, so Make tries to "rm DOC". Maybe we should use "rm -f" to avoid the error message?