From: Jonathan McDowell Date: Sat, 7 Jun 2008 10:48:42 +0000 (+0100) Subject: Fix bashism in Makefile distclean target X-Git-Tag: 0.3.6~5 X-Git-Url: http://the.earth.li/gitweb/?p=onak.git;a=commitdiff_plain;h=e38c96cef3f2b32a5f6e0bee8e845279f9dffead 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)