Author: danielsh
Date: Fri Dec 14 21:44:34 2012
New Revision: 1422105

URL: http://svn.apache.org/viewvc?rev=1422105&view=rev
Log:
* Makefile.in
  (fast-clean, gcov-clean, check-clean): Add '--' guards to xargs.

Modified:
    subversion/trunk/Makefile.in

Modified: subversion/trunk/Makefile.in
URL: 
http://svn.apache.org/viewvc/subversion/trunk/Makefile.in?rev=1422105&r1=1422104&r2=1422105&view=diff
==============================================================================
--- subversion/trunk/Makefile.in (original)
+++ subversion/trunk/Makefile.in Fri Dec 14 21:44:34 2012
@@ -404,7 +404,7 @@ fast-clean: doc-clean
              rm -rf .libs);                                          \
           fi                                                         \
         done
-       echo $(CLEAN_FILES) | xargs rm -f
+       echo $(CLEAN_FILES) | xargs rm -f --
        find $(CTYPES_PYTHON_SRC_DIR) $(SWIG_PY_SRC_DIR) $(SWIG_PY_DIR) \
                $(abs_srcdir)/build 
$(top_srcdir)/subversion/tests/cmdline/svntest \
                -name "*.pyc" -exec rm {} ';'
@@ -586,11 +586,11 @@ gcov-reset:
 gcov-clean:
        rm -f gcov-lcov.dat gcov-lcov.log gcov-genhtml.log
        rm -rf gcov-report
-       find . -name "*.gcda" -o -name "*.gcno" -print0 | xargs -0 rm -f
+       find . -name "*.gcda" -o -name "*.gcno" -print0 | xargs -0 rm -f --
 
 check-clean: gcov-clean
        find subversion/tests/cmdline/svn-test-work -print0    \
-              -mindepth 1 -maxdepth 1 | xargs -0 rm -rf;      \
+              -mindepth 1 -maxdepth 1 | xargs -0 rm -rf --;   \
        rm -rf subversion/tests/libsvn_fs/test-repo-*          \
               subversion/tests/libsvn_fs_base/test-repo-*     \
               subversion/tests/libsvn_fs_fs/test-repo-*       \


Reply via email to