]> granicus.if.org Git - apache/commitdiff
Replace the hack to remove CVS directories with one for Subversion '.svn' directories.
authorPaul Querna <pquerna@apache.org>
Sat, 20 Nov 2004 02:29:28 +0000 (02:29 +0000)
committerPaul Querna <pquerna@apache.org>
Sat, 20 Nov 2004 02:29:28 +0000 (02:29 +0000)
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.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105916 13f79535-47bb-0310-9956-ffa450edef68

Makefile.in

index 7af3ca6cc9ad08f2d53992affe24465c2135b992..cb62f666bee121e014ea24def2290396a265056c 100644 (file)
@@ -193,7 +193,7 @@ install-man:
        @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 \