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: Bootstrapping Emacs-CVS on Cygwin Date: Fri, 27 Jul 2007 13:19:11 +0200 (MET DST) Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: sea.gmane.org 1185535171 8333 80.91.229.12 (27 Jul 2007 11:19:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 27 Jul 2007 11:19:31 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jul 27 13:19:25 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 1IENqu-0000y3-KO for ged-emacs-devel@m.gmane.org; Fri, 27 Jul 2007 13:19:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IENqt-0001SM-UR for ged-emacs-devel@m.gmane.org; Fri, 27 Jul 2007 07:19:23 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IENqq-0001S6-Es for emacs-devel@gnu.org; Fri, 27 Jul 2007 07:19:20 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IENqo-0001Ru-17 for emacs-devel@gnu.org; Fri, 27 Jul 2007 07:19:19 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IENqn-0001Rr-PT for emacs-devel@gnu.org; Fri, 27 Jul 2007 07:19:17 -0400 Original-Received: from postino2.roma1.infn.it ([141.108.26.25]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IENqk-0001ZI-LO; Fri, 27 Jul 2007 07:19:15 -0400 Original-Received: from ax0rm1.roma1.infn.it (ax0rm1.roma1.infn.it [141.108.26.19]) by postino2.roma1.infn.it (8.12.11/8.12.11) with ESMTP id l6RBJBYj005560 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 27 Jul 2007 13:19:12 +0200 In-Reply-To: X-PMX-Version: 4.7.1.128075, Antispam-Engine: 2.5.1.298604, Antispam-Data: 2007.7.27.31640 X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0' X-detected-kernel: Linux 2.4-2.6 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:75658 Archived-At: On Fri, 27 Jul 2007, Eli Zaretskii wrote: > > 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? Probably, yes! Cheers, Angelo. > >