diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2010-08-08 18:46:46 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2010-08-08 18:46:46 +0000 |
commit | 911bbe046f44d210e23cb7270fd4aeac317889f6 (patch) | |
tree | e5beb69b11d718fe9bb414267ac7376113cce0ef /eclass/apache-module.eclass | |
parent | x86 stable wrt bug #331611 (diff) | |
download | historical-911bbe046f44d210e23cb7270fd4aeac317889f6.tar.gz historical-911bbe046f44d210e23cb7270fd4aeac317889f6.tar.bz2 historical-911bbe046f44d210e23cb7270fd4aeac317889f6.zip |
fix wrong filename in pkg_postinst output
Diffstat (limited to 'eclass/apache-module.eclass')
-rw-r--r-- | eclass/apache-module.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/apache-module.eclass b/eclass/apache-module.eclass index 4868ad86a0d8..9eb926ce4512 100644 --- a/eclass/apache-module.eclass +++ b/eclass/apache-module.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-module.eclass,v 1.23 2008/03/23 12:11:52 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/apache-module.eclass,v 1.24 2010/08/08 18:46:46 hollow Exp $ # @ECLASS: apache-module.eclass # @MAINTAINER: @@ -228,7 +228,7 @@ apache-module_pkg_postinst() { set -- ${APACHE2_MOD_CONF} einfo einfo "Configuration file installed as" - einfo " ${APACHE_MODULES_CONFDIR}/$(basename $1).conf" + einfo " ${APACHE_MODULES_CONFDIR}/$(basename ${2:-$1}).conf" einfo "You may want to edit it before turning the module on in /etc/conf.d/apache2" einfo fi |