From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.bugs Subject: Re: dangerous command in Makefile.in uninstall rule Date: Sat, 04 Mar 2006 08:37:23 -0500 Message-ID: References: <20060227124545.23413.qmail@web26001.mail.ukl.yahoo.com> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1141486100 19802 80.91.229.2 (4 Mar 2006 15:28:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 4 Mar 2006 15:28:20 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org, sick_soul@yahoo.it Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sat Mar 04 16:28:17 2006 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FFYfw-0005P1-CE for geb-bug-gnu-emacs@m.gmane.org; Sat, 04 Mar 2006 16:28:08 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FFYfz-0000Tr-LM for geb-bug-gnu-emacs@m.gmane.org; Sat, 04 Mar 2006 10:28:11 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FFWx0-0001Fa-6X for bug-gnu-emacs@gnu.org; Sat, 04 Mar 2006 08:37:38 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FFWws-00019V-3e for bug-gnu-emacs@gnu.org; Sat, 04 Mar 2006 08:37:32 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FFWwq-00019E-QP for bug-gnu-emacs@gnu.org; Sat, 04 Mar 2006 08:37:28 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FFWyj-0005FI-5L for bug-gnu-emacs@gnu.org; Sat, 04 Mar 2006 08:39:25 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1FFWwl-0006Yw-UK; Sat, 04 Mar 2006 08:37:24 -0500 Original-To: Eli Zaretskii In-reply-to: (message from Eli Zaretskii on Fri, 03 Mar 2006 14:35:22 +0200) 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:14920 Archived-At: The cleanest way I know of is to have a single list of main Info files (i.e., without the -[0-9] etc. suffixes, and then do something like this: for f in ${INFO_FILES} do rm -f $$f $$f-[1-9] $$f-[1-9][0-9] done We could then have the install target use INFO_FILES as well. That is indeed clean. Please install that.