aboutsummaryrefslogtreecommitdiff
path: root/Makefile.make
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.make')
-rw-r--r--Makefile.make11
1 files changed, 4 insertions, 7 deletions
diff --git a/Makefile.make b/Makefile.make
index d8e229e4db..e19053462d 100644
--- a/Makefile.make
+++ b/Makefile.make
@@ -46,23 +46,20 @@
# !! Before using FIND_SKIP_DIRS, please read how you should in the !!
# !! FIND_SKIP_DIRS section of dev/doc/build-system.dev.txt !!
-FIND_SKIP_DIRS:='(' \
+# "-not -name ." to avoid skipping everything since we "find ."
+# "-type d" to be able to find .merlin.in files
+FIND_SKIP_DIRS:=-not -name . '(' \
-name '{arch}' -o \
- -name '.svn' -o \
+ -name '.*' -type d -o \
-name '_darcs' -o \
- -name '.git' -o \
- -name '.bzr' -o \
-name 'debian' -o \
-name "$${GIT_DIR}" -o \
-name '_build' -o \
-name '_build_ci' -o \
- -name '_build_boot' -o \
-name '_install_ci' -o \
-name 'gramlib' -o \
-name 'user-contrib' -o \
-name 'test-suite' -o \
- -name '.opamcache' -o \
- -name '.coq-native' -o \
-name 'plugin_tutorial' \
')' -prune -o