From e38c96cef3f2b32a5f6e0bee8e845279f9dffead Mon Sep 17 00:00:00 2001 From: Jonathan McDowell Date: Sat, 7 Jun 2008 11:48:42 +0100 Subject: [PATCH] Fix bashism in Makefile distclean target We weren't correctly cleaning up config.{h,sub,guess} when /bin/sh wasn't bash and thus didn't support that style of expansion. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index a7a5c08..61dc164 100644 --- a/Makefile.in +++ b/Makefile.in @@ -141,7 +141,7 @@ ifeq (x@KEYD@, xyes) endif distclean: clean - $(RM) -f Makefile .depend config.{log,status,h} + $(RM) -f Makefile .depend config.log config.status config.h $(RM) -r autom4te.cache .depend: $(SRCS) -- 2.39.2