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: dangerous command in Makefile.in uninstall rule Date: Fri, 03 Mar 2006 14:35:22 +0200 Message-ID: References: <20060227124545.23413.qmail@web26001.mail.ukl.yahoo.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1141498367 26222 80.91.229.2 (4 Mar 2006 18:52:47 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 4 Mar 2006 18:52:47 +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 19:52:43 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 1FFbro-0001Tc-9h for geb-bug-gnu-emacs@m.gmane.org; Sat, 04 Mar 2006 19:52:36 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FFbrq-0007Ae-D9 for geb-bug-gnu-emacs@m.gmane.org; Sat, 04 Mar 2006 13:52:38 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FFZZ5-0003xZ-Vo for bug-gnu-emacs@gnu.org; Sat, 04 Mar 2006 11:25:08 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FFZZ1-0003t2-T7 for bug-gnu-emacs@gnu.org; Sat, 04 Mar 2006 11:25:06 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FFEWA-0006G0-8V for bug-gnu-emacs@gnu.org; Fri, 03 Mar 2006 12:56:42 -0500 Original-Received: from [192.114.186.66] (helo=romy.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FF9Wv-0004ED-Il; Fri, 03 Mar 2006 07:37:09 -0500 Original-Received: from HOME-C4E4A596F7 (IGLD-83-130-252-204.inter.net.il [83.130.252.204]) by romy.inter.net.il (MOS 3.7.3-GA) with ESMTP id DRE84915 (AUTH halo1); Fri, 3 Mar 2006 14:35:15 +0200 (IST) Original-To: rms@gnu.org In-reply-to: (message from Richard Stallman on Mon, 27 Feb 2006 18:47:01 -0500) 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:14927 Archived-At: > From: Richard Stallman > Date: Mon, 27 Feb 2006 18:47:01 -0500 > Cc: bug-gnu-emacs@gnu.org > > $ rm -f cl* ada-mode* > autotype* calc* ccmode* ebrowse* efaq* eintr elisp* > eshell* eudc* idlwave* message* pcl-cvs* reftex* > speedbar* tramp* widget* woman* dired-x* ediff* emacs* > emacs-xtra* flymake* forms* gnus* info* mh-e* > newsticker* org* sc* ses* vip* smtpmail* url* rcirc* > erc* > > We could make these more specific. For instance, it could be > > cl cl-* > > or even > > cl cl-[0-9] cl-[0-9][0-9] > > for each one of the manuals. > > But that is rather clumsy. Is there any cleaner way to do it? 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.