diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2008-02-02 10:10:36 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2008-02-02 10:10:36 +0000 |
commit | b2b26684c2cd90662cffa8f0a31f0ddab8cd4965 (patch) | |
tree | fc88a13706b8c75a29797da74a116f2675fea3c3 /eclass | |
parent | x86 stable, bug #208547 (diff) | |
download | historical-b2b26684c2cd90662cffa8f0a31f0ddab8cd4965.tar.gz historical-b2b26684c2cd90662cffa8f0a31f0ddab8cd4965.tar.bz2 historical-b2b26684c2cd90662cffa8f0a31f0ddab8cd4965.zip |
remove depend.apache usage wrt #208033
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/apache-2.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass index 63195cff6810..624dd1221dd5 100644 --- a/eclass/apache-2.eclass +++ b/eclass/apache-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.7 2008/01/19 10:59:08 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.8 2008/02/02 10:10:36 hollow Exp $ # @ECLASS: apache-2 # @MAINTAINER: apache-devs@gentoo.org @@ -10,7 +10,7 @@ # information about where certain interfaces are located such as LoadModule # generation and inter-module dependency checking. -inherit depend.apache eutils flag-o-matic multilib autotools +inherit autotools eutils flag-o-matic multilib # ============================================================================== # INTERNAL VARIABLES @@ -194,12 +194,12 @@ check_module_depends() { } # @ECLASS-VARIABLE: MY_CONF -# DESCRIPTION: +# @DESCRIPTION: # This internal variable contains the econf options for the current module # selection after a call to setup_modules() # @ECLASS-VARIABLE: MY_MODS -# DESCRIPTION: +# @DESCRIPTION: # This internal variable contains a sorted, space separated list of currently # selected modules after a call to setup_modules() @@ -302,7 +302,7 @@ setup_modules() { # This internal function generates the LoadModule lines for httpd.conf based on # the current module selection and MODULE_DEFINES generate_load_module() { - local endit=0 mod_lines= mod_dir="${D}${APACHE2_MODULESDIR}" + local endit=0 mod_lines= mod_dir="${D}/usr/$(get_libdir)/apache2/modules" if use static; then sed -i -e "/%%LOAD_MODULE%%/d" \ |