From: Jonathan McDowell <noodles@meepok>
Date: Sat, 7 Jun 2008 10:48:42 +0000 (+0100)
Subject: Fix bashism in Makefile distclean target
X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/commitdiff_plain/e38c96cef3f2b32a5f6e0bee8e845279f9dffead?ds=inline

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.
---

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)