From dea0ee201916a98df664cb25ecb393dfd1fe204c Mon Sep 17 00:00:00 2001
From: "Richard M. Stallman" <rms@gnu.org>
Date: Wed, 18 Sep 2002 16:14:30 +0000
Subject: [PATCH] (bootstrap-clean): Use cd to shorten arg strings. Don't
 ignore errors in rm line.

---
 lisp/Makefile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 9fa62e4625e..aa68e43c1da 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -278,7 +278,7 @@ recompile: doit
 
 bootstrap-clean:
 	if test -x $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi
-	-rm -f $(lisp)/*.elc $(lisp)/*/*.elc
+	cd $(lisp); rm -f *.elc */*.elc
 
 # Generate/update files for the bootstrap process.
 
-- 
2.39.5