diff options
author | Graham Leggett <minfrin@apache.org> | 2011-11-29 17:56:47 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2011-11-29 17:56:47 +0100 |
commit | 43147dad7150e877be4c2804656e01d018b19e46 (patch) | |
tree | f5852653fe46142fac3edae717276937bd2635fe /config.layout | |
parent | Logic which makes the balancer "active" or not... so we can turn them (diff) | |
download | apache2-43147dad7150e877be4c2804656e01d018b19e46.tar.xz apache2-43147dad7150e877be4c2804656e01d018b19e46.zip |
RPM: Introduce a proper layout for RPM, removing the need for script
gymnastics and replacement configuration files in order to get the
configuration paths to match up correctly.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1207968 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'config.layout')
-rw-r--r-- | config.layout | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/config.layout b/config.layout index af28f9f08f..58ee54ca1d 100644 --- a/config.layout +++ b/config.layout @@ -298,3 +298,28 @@ installbuilddir: ${prefix}/usr/share/apache2/build errordir: ${datadir}/error </Layout> + +# Generic RPM layout +<Layout RPM> + prefix: /usr + exec_prefix: ${prefix} + bindir: ${prefix}/bin + sbindir: ${prefix}/sbin + libdir: ${prefix}/lib + libexecdir: ${libdir}/httpd/modules + mandir: ${prefix}/share/man + sysconfdir: /etc/httpd/conf + installbuilddir: ${libdir}/httpd/build + includedir: ${prefix}/include/httpd + localstatedir: /var + datadir: ${localstatedir}/www + errordir: ${datadir}/error + iconsdir: ${datadir}/icons + htdocsdir: ${datadir}/html + manualdir: ${datadir}/manual + cgidir: ${datadir}/cgi-bin + runtimedir: ${localstatedir}/run + logfiledir: ${localstatedir}/log/httpd + proxycachedir: ${localstatedir}/cache/httpd/cache-root +</Layout> + |