summaryrefslogtreecommitdiff
path: root/support/make
diff options
context:
space:
mode:
authorschinz <schinz@epfl.ch>2004-10-04 08:29:02 +0000
committerschinz <schinz@epfl.ch>2004-10-04 08:29:02 +0000
commit1fbf1add8e2cbe172dfc2f62bdbc8ddb7b68a267 (patch)
treefa9e0346e69f89bda9ec24717fb949f99456b761 /support/make
parentfa2236790ccfb7b8c6345488fc3e20004f73278b (diff)
downloadscala-1fbf1add8e2cbe172dfc2f62bdbc8ddb7b68a267.tar.gz
scala-1fbf1add8e2cbe172dfc2f62bdbc8ddb7b68a267.tar.bz2
scala-1fbf1add8e2cbe172dfc2f62bdbc8ddb7b68a267.zip
- 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
Diffstat (limited to 'support/make')
-rw-r--r--support/make/default.mk2
1 files changed, 1 insertions, 1 deletions
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