From: Ryan Bloom Date: Sat, 24 Nov 2001 15:52:44 +0000 (+0000) Subject: Fix the installation target to make sure that the manual is X-Git-Tag: 2.0.29~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4c07f4c74c2112c7f7af5fcafa746d5d70087a2;p=apache Fix the installation target to make sure that the manual is installed in the correct location. PR: 8851 Submitted by: Yoshifumi Hiramatsu and Gomez Henri git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92164 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index fa9437ed03..34718cc685 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,10 @@ Changes with Apache 2.0.29-dev + *) Fix the installation target to make sure that the manual is + installed in the correct location. + [Yoshifumi Hiramatsu and + Gomez Henri ] + *) Fix the cmd command for mod_include. When we are processing a cmd command, we do not want to use the r->filename to set the command name. The command comes from the SSI tag. To do this, diff --git a/Makefile.in b/Makefile.in index 31ef41884e..4f6e83e6a6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -101,8 +101,8 @@ install-htdocs: @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 $(manualdir) || $(MKINSTALLDIRS) $(manualdir) + @test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(manualdir)) @(cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;) install-error: diff --git a/acinclude.m4 b/acinclude.m4 index 4def54d330..2057f2b441 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -295,7 +295,7 @@ AC_DEFUN(APACHE_LAYOUT,[ for var in prefix exec_prefix bindir sbindir libexecdir mandir \ sysconfdir datadir errordir iconsdir htdocsdir cgidir \ includedir localstatedir runtimedir logfiledir \ - proxycachedir installbuilddir; do + manualdir proxycachedir installbuilddir; do eval "val=\"\$$var\"" case $val in *+)