[[[
The options -mindepth and -maxdepth of find are not portable.
Since there aren't any other python files in subversion/tests/ except
those at depth 2 and 3 just drop those options.
* Makefile.in
(fast-clean): Remove -mindepth and -maxdepth from find command.
]]]
[[[
Index: Makefile.in
===================================================================
--- Makefile.in (revision 883010)
+++ Makefile.in (working copy)
@@ -369,8 +369,7 @@
rm -f $(CLEAN_FILES)
find $(CTYPES_PYTHON_SRC_DIR) $(SWIG_PY_SRC_DIR) $(SWIG_PY_DIR) \
$(abs_srcdir)/build -name "*.pyc" -exec rm {} ';'
- find $(abs_srcdir)/subversion/tests/ -mindepth 2 -maxdepth 3 \
- -name "*.pyc" -exec rm {} ';'
+ find $(abs_srcdir)/subversion/tests/ -name "*.pyc" -exec rm {} ';'
# clean all but bulky test output, returning to before './configure' was run.
SVN_CONFIG_SCRIPT_FILES = @SVN_CONFIG_SCRIPT_FILES@
]]]