diff options
author | Ryan Bloom <rbb@apache.org> | 2001-11-24 16:52:44 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-11-24 16:52:44 +0100 |
commit | f4c07f4c74c2112c7f7af5fcafa746d5d70087a2 (patch) | |
tree | 2400f5e6eb401d9b0c215a5ec90dd501a09e87f2 | |
parent | short-circuit out of xbithack_handler immediately if xbithack (diff) | |
download | apache2-f4c07f4c74c2112c7f7af5fcafa746d5d70087a2.tar.xz apache2-f4c07f4c74c2112c7f7af5fcafa746d5d70087a2.zip |
Fix the installation target to make sure that the manual is
installed in the correct location.
PR: 8851
Submitted by: Yoshifumi Hiramatsu <hiramatu@boreas.dti.ne.jp>
and Gomez Henri <hgomez@slib.fr>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92164 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | CHANGES | 5 | ||||
-rw-r--r-- | Makefile.in | 4 | ||||
-rw-r--r-- | acinclude.m4 | 2 |
3 files changed, 8 insertions, 3 deletions
@@ -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 <hiramatu@boreas.dti.ne.jp> and + Gomez Henri <hgomez@slib.fr>] + *) 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 *+) |