From 1fbf1add8e2cbe172dfc2f62bdbc8ddb7b68a267 Mon Sep 17 00:00:00 2001 From: schinz Date: Mon, 4 Oct 2004 08:29:02 +0000 Subject: - fixed the definition of "default.distclean" t... - fixed the definition of "default.distclean" to pass a path to the "find" command, as required on most Unices --- support/make/default.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support') diff --git a/support/make/default.mk b/support/make/default.mk index 581432d57a..dcc8bc7bfa 100644 --- a/support/make/default.mk +++ b/support/make/default.mk @@ -27,7 +27,7 @@ default.fastclean : default.clean : fastclean default.distclean : clean - $(FIND) '(' -name '*~' -o -name core ')' -exec $(RM) '{}' ';' + $(FIND) . '(' -name '*~' -o -name core ')' -exec $(RM) '{}' ';' .PHONY : all .PHONY : force -- cgit v1.2.3