summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Blosser2007-02-17 00:52:13 -0600
committerJaka Kranjc2007-02-17 18:14:14 +0100
commit5a73ae599a6d07bb308f68f4091e281fb3826a4b (patch)
tree745e928b4c2f10cdee7aca0f55469ffb9639258b
parent1b6f2e42dfb9669106746c5a91aaa3bdd890b7ac (diff)
apache2: use absolute paths in config.layout (bug 13510)
(cherry picked from commit a731f728a96de4fead3264dfd7427e1ca08a38c4)
-rw-r--r--http/apache2/HISTORY5
-rw-r--r--http/apache2/config.layout40
2 files changed, 25 insertions, 20 deletions
diff --git a/http/apache2/HISTORY b/http/apache2/HISTORY
index 2d158f9717..600fcaf5c5 100644
--- a/http/apache2/HISTORY
+++ b/http/apache2/HISTORY
@@ -1,3 +1,8 @@
+2007-02-17 Jeremy Blosser <jblosser-smgl@firinn.org>
+ * config.layout: Use literal paths everywhere because otherwise
+ autoconf 2.60 gets lost when apxs is invoked. Bug 13510. Remove
+ $INSTALL_ROOT for the same reason.
+
2007-02-06 Jeremy Blosser <jblosser-smgl@firinn.org>
* DETAILS: PATCHLEVEL++
* config.layout: Some more tweaks for bugs 13295 and 13051.
diff --git a/http/apache2/config.layout b/http/apache2/config.layout
index 05fe8b90db..547cee0d45 100644
--- a/http/apache2/config.layout
+++ b/http/apache2/config.layout
@@ -11,25 +11,25 @@
# Source Mage standard path layout.
<Layout SMGL>
- prefix: ${INSTALL_ROOT}/usr
- exec_prefix: ${prefix}
- bindir: ${exec_prefix}/bin
- sbindir: ${exec_prefix}/sbin
- libdir: ${exec_prefix}/lib
- libexecdir: ${exec_prefix}/libexec
- mandir: ${prefix}/share/man
- sysconfdir: ${INSTALL_ROOT}/etc/httpd
- datadir: ${prefix}/share+
- installbuilddir: ${datadir}/build
- errordir: ${datadir}/error
- iconsdir: ${datadir}/icons
- htdocsdir: ${datadir}/htdocs
- manualdir: ${datadir}/manual
- cgidir: ${datadir}/cgi-bin
- includedir: ${prefix}/include+
- localstatedir: ${INSTALL_ROOT}/var
- runtimedir: ${localstatedir}/run
- logfiledir: ${localstatedir}/log
- proxycachedir: ${localstatedir}/cache/apache2/proxy
+ prefix: /usr
+ exec_prefix: /usr
+ bindir: /usr/bin
+ sbindir: /usr/sbin
+ libdir: /usr/lib
+ libexecdir: /usr/libexec
+ mandir: /usr/share/man
+ sysconfdir: /etc/httpd
+ datadir: /usr/share/apache2
+ installbuilddir: /usr/share/apache2/build
+ errordir: /usr/share/apache2/error
+ iconsdir: /usr/share/apache2/icons
+ htdocsdir: /usr/share/apache2/htdocs
+ manualdir: /usr/share/apache2/manual
+ cgidir: /usr/share/apache2/cgi-bin
+ includedir: /usr/include/apache2
+ localstatedir: /var
+ runtimedir: /var/run
+ logfiledir: /var/log
+ proxycachedir: /var/cache/apache2/proxy
</Layout>