summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2005-06-01 21:25:50 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2005-06-01 21:25:50 +0000
commit7a02646e360040507e4e1fc6dea34785b5854694 (patch)
tree28bf2b735929ad24dda4963e16b9cbc02461ffc8 /eclass
parentBail if more than one MPM is specified. (diff)
downloadgentoo-2-7a02646e360040507e4e1fc6dea34785b5854694.tar.gz
gentoo-2-7a02646e360040507e4e1fc6dea34785b5854694.tar.bz2
gentoo-2-7a02646e360040507e4e1fc6dea34785b5854694.zip
Cleaning up spaces/tabs
Diffstat (limited to 'eclass')
-rw-r--r--eclass/linux-info.eclass14
1 files changed, 7 insertions, 7 deletions
diff --git a/eclass/linux-info.eclass b/eclass/linux-info.eclass
index 62bdd6787385..aad893d76672 100644
--- a/eclass/linux-info.eclass
+++ b/eclass/linux-info.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.25 2005/04/24 10:55:04 johnm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.26 2005/06/01 21:25:50 wolf31o2 Exp $
#
# Description: This eclass is used as a central eclass for accessing kernel
# related information for sources already installed.
@@ -81,12 +81,12 @@ qout() {
type=${1}
shift
outputmsg="${@}"
- case "${EBUILD_PHASE}" in
- depend) unset outputmsg;;
- clean) unset outputmsg;;
- preinst) unset outputmsg;;
- esac
- [ -n "${outputmsg}" ] && ${type} "${outputmsg}"
+ case "${EBUILD_PHASE}" in
+ depend) unset outputmsg;;
+ clean) unset outputmsg;;
+ preinst) unset outputmsg;;
+ esac
+ [ -n "${outputmsg}" ] && ${type} "${outputmsg}"
}
qeinfo() { qout einfo "${@}" ; }