summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2013-07-22 11:38:59 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2013-07-22 11:38:59 +0000
commitb45ddae7d61be2ffb1197d8718d137bc6bedbed1 (patch)
treec53ea1f85379454a86f836d68d9fa8dcfa4e9fd8 /eclass
parentRemove use of EPREFIX wrt #477692 to avoid collision with Portage helpers (diff)
downloadhistorical-b45ddae7d61be2ffb1197d8718d137bc6bedbed1.tar.gz
historical-b45ddae7d61be2ffb1197d8718d137bc6bedbed1.tar.bz2
historical-b45ddae7d61be2ffb1197d8718d137bc6bedbed1.zip
Minor identation fix, drop useless since we just want to know if the return value is true or not
Diffstat (limited to 'eclass')
-rw-r--r--eclass/bash-completion-r1.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/bash-completion-r1.eclass b/eclass/bash-completion-r1.eclass
index cde3efdeb48c..ed6d20532e4e 100644
--- a/eclass/bash-completion-r1.eclass
+++ b/eclass/bash-completion-r1.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/bash-completion-r1.eclass,v 1.6 2013/07/22 11:28:42 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/bash-completion-r1.eclass,v 1.7 2013/07/22 11:38:59 ssuominen Exp $
# @ECLASS: bash-completion-r1.eclass
# @MAINTAINER:
@@ -40,8 +40,8 @@ esac
_bash-completion-r1_get_bashdir() {
debug-print-function ${FUNCNAME} "${@}"
- if $($(tc-getPKG_CONFIG) --exists bash-completion); then
- echo "$($(tc-getPKG_CONFIG) --variable=$1 bash-completion)"
+ if $(tc-getPKG_CONFIG) --exists bash-completion; then
+ echo "$($(tc-getPKG_CONFIG) --variable=$1 bash-completion)"
else
echo $2
fi