Author: danielsh
Date: Sun May  5 13:24:37 2013
New Revision: 1479320

URL: http://svn.apache.org/r1479320
Log:
Eliminate a build warning.

* Makefile.in
  (check-clean): Only find subversion/tests/cmdline/svn-test-work if it exists.

Modified:
    subversion/trunk/Makefile.in

Modified: subversion/trunk/Makefile.in
URL: 
http://svn.apache.org/viewvc/subversion/trunk/Makefile.in?rev=1479320&r1=1479319&r2=1479320&view=diff
==============================================================================
--- subversion/trunk/Makefile.in (original)
+++ subversion/trunk/Makefile.in Sun May  5 13:24:37 2013
@@ -597,8 +597,10 @@ gcov-clean:
        find . -name "*.gcda" -o -name "*.gcno" -print0 | xargs -0 rm -f --
 
 check-clean: gcov-clean
-       find subversion/tests/cmdline/svn-test-work -mindepth 1 -maxdepth 1 \
+       if [ -d subversion/tests/cmdline/svn-test-work ]; then \
+         find subversion/tests/cmdline/svn-test-work -mindepth 1 -maxdepth 1 \
                -print0 | xargs -0 rm -rf --;   \
+       fi
        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