summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-08-21 16:26:21 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-08-21 16:26:21 +0000
commitff16400cb209577c721e05ef143640f269b20658 (patch)
tree405e51975632394d35620f5cee1e78a9662ac4df
parentcb50c9001cb6d4f11bef3613d4f0e221d0ea7085 (diff)
cleandeps only removes dependency files in the configuration build directory
Closes Cactus/1138 git-svn-id: http://svn.cactuscode.org/flesh/trunk@2984 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--lib/make/make.configuration2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/make/make.configuration b/lib/make/make.configuration
index 8cbcba28..23e59c52 100644
--- a/lib/make/make.configuration
+++ b/lib/make/make.configuration
@@ -216,7 +216,7 @@ clean:
cleandeps:
@echo Deleting all dependency files in $(TOP)
- find $(TOP) \( -name '*.[d]' -o -name '*.a' \) -exec rm {} \;
+ find $(TOP)/build \( -name '*.[d]' -o -name '*.a' \) -exec rm {} \;
cleanobjs:
@echo Deleting all object files in $(TOP)