Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 39609 invoked by uid 500); 24 Sep 2001 15:50:01 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 39591 invoked from network); 24 Sep 2001 15:50:01 -0000 Errors-To: Message-ID: <00fc01c14510$a68a2870$96c0b0d0@roweclan.net> From: "William A. Rowe, Jr." To: , "Peter Bieringer" Subject: Fw: Bug in Makefile regarding installing manuals Date: Mon, 24 Sep 2001 10:48:30 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N ----- Forwarded Message ----- From: "Peter Bieringer" To: "William A. Rowe, Jr." Sent: Saturday, September 22, 2001 8:27 AM Subject: Bug in Makefile regarding installing manuals > Hi, > > manual pages aren't installed, following fix will help, > > Peter > > --- Makefile.orig Sat Sep 22 07:19:35 2001 > +++ Makefile Sat Sep 22 07:24:51 2001 > @@ -77,8 +77,8 @@ > @echo Installing HTML documents > @test -d $(htdocsdir) || $(MKINSTALLDIRS) $(htdocsdir) > @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * > $(htdocsdir)) > - @test -d $(prefix)/manual || $(MKINSTALLDIRS) $(prefix)/manual > - @test -d $(top_srcdir)/docs/manual && (cd > $(top_srcdir)/docs/manual && cp -rp * $(prefix)/manual) > + @test -d $(htdocsdir)/manual || $(MKINSTALLDIRS) > $(htdocsdir)/manual > + @test -d $(top_srcdir)/docs/manual && (cd > $(top_srcdir)/docs/manual && cp -rp * $(htdocsdir)/manual) > @(cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf > {} \;) > > install-error: >