diff options
author | 2010-08-08 18:46:46 +0000 | |
---|---|---|
committer | 2010-08-08 18:46:46 +0000 | |
commit | ba56b6090b4dd902bc23152e03454c97380f08dd (patch) | |
tree | c7e0090a1f8a177879745743eba138d64d356fe9 /eclass | |
parent | x86 stable wrt bug #331611 (diff) | |
download | gentoo-2-ba56b6090b4dd902bc23152e03454c97380f08dd.tar.gz gentoo-2-ba56b6090b4dd902bc23152e03454c97380f08dd.tar.bz2 gentoo-2-ba56b6090b4dd902bc23152e03454c97380f08dd.zip |
fix wrong filename in pkg_postinst output
Diffstat (limited to '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 |