You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@apache.org on 2007/04/24 13:08:02 UTC

svn commit: r531878 - /httpd/httpd/branches/2.2.x/Makefile.in

Author: martin
Date: Tue Apr 24 04:08:01 2007
New Revision: 531878

URL: http://svn.apache.org/viewvc?view=rev&rev=531878
Log:
Add forgotten '|| true' to prevent 'make install-man' from returning an error (if rsync is not present on the platform)

Modified:
    httpd/httpd/branches/2.2.x/Makefile.in

Modified: httpd/httpd/branches/2.2.x/Makefile.in
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/Makefile.in?view=diff&rev=531878&r1=531877&r2=531878
==============================================================================
--- httpd/httpd/branches/2.2.x/Makefile.in (original)
+++ httpd/httpd/branches/2.2.x/Makefile.in Tue Apr 24 04:08:01 2007
@@ -210,7 +210,7 @@
 	  $(RSYNC) --exclude .svn -rlpt --numeric-ids $(top_srcdir)/docs/manual/ $(DESTDIR)$(manualdir)/; \
 	else \
 	  cd $(top_srcdir)/docs/manual && cp -rp * $(DESTDIR)$(manualdir); \
-	  cd $(DESTDIR)$(manualdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null; \
+	  cd $(DESTDIR)$(manualdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \
 	fi
 
 install-suexec: