summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-02-20 06:45:12 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-02-20 06:45:12 +0000
commitfe411af92a8ce6acdfad936aeafe1c2fac6c8db8 (patch)
treea0fe0106fd5d3fc6d27367c74fb7987e87927c38
parentVersion bump (diff)
downloadgentoo-2-fe411af92a8ce6acdfad936aeafe1c2fac6c8db8.tar.gz
gentoo-2-fe411af92a8ce6acdfad936aeafe1c2fac6c8db8.tar.bz2
gentoo-2-fe411af92a8ce6acdfad936aeafe1c2fac6c8db8.zip
opps, removed wrong portion of if/else statement. Thanks to tove for pointing this out
-rw-r--r--eclass/bash-completion.eclass5
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/bash-completion.eclass b/eclass/bash-completion.eclass
index 7150d7721142..485093beb44b 100644
--- a/eclass/bash-completion.eclass
+++ b/eclass/bash-completion.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/bash-completion.eclass,v 1.19 2009/02/20 06:22:15 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/bash-completion.eclass,v 1.20 2009/02/20 06:45:12 darkside Exp $
# @ECLASS: bash-completion.eclass
# @MAINTAINER:
@@ -51,11 +51,10 @@ bash-completion_pkg_postinst() {
elog "To enable command-line completion for ${PN}, run:"
elog
elog " eselect bashcomp enable ${BASH_COMPLETION_NAME:-${PN}}"
- elog " bash-completion-config --install ${BASH_COMPLETION_NAME:-${PN}}"
elog
elog "to install locally, or"
elog
- elog " bash-completion-config --global --install ${BASH_COMPLETION_NAME:-${PN}}"
+ elog " eselect bashcomp enable --global ${BASH_COMPLETION_NAME:-${PN}}"
elog
elog "to install system-wide."
elog "Read bash-completion-config(1) for more information."