You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2004/11/20 03:29:28 UTC

svn commit: r105916 - httpd/httpd/trunk

Author: pquerna
Date: Fri Nov 19 18:29:28 2004
New Revision: 105916

Modified:
   httpd/httpd/trunk/Makefile.in
Log:
Replace the hack to remove CVS directories with one for Subversion '.svn' directories.

There *should* be a better way to only install the manual files, and
not the '.svn' directories.

Without this, multiple make installs to the same prefix will fail.


Modified: httpd/httpd/trunk/Makefile.in
==============================================================================
--- httpd/httpd/trunk/Makefile.in	(original)
+++ httpd/httpd/trunk/Makefile.in	Fri Nov 19 18:29:28 2004
@@ -193,7 +193,7 @@
 	@cp -p $(top_srcdir)/docs/man/*.1 $(DESTDIR)$(mandir)/man1
 	@cp -p $(top_srcdir)/docs/man/*.8 $(DESTDIR)$(mandir)/man8
 	@(cd $(top_srcdir)/docs/manual && cp -rp * $(DESTDIR)$(manualdir))
-	@(cd $(DESTDIR)$(manualdir) && find . -name "CVS" -type d -print | xargs rm -rf 2>/dev/null ) || true
+	@(cd $(DESTDIR)$(manualdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null ) || true
 
 install-suexec:
 	@if test -f $(builddir)/support/suexec; then \