Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sun, 28 Feb 2016 18:30:09
Message-Id: 1456684196.db1cfecba0c204ba0533f9c5a2d4fc22e2eb145a.mgorny@gentoo
1 commit: db1cfecba0c204ba0533f9c5a2d4fc22e2eb145a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 18:28:12 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 18:29:56 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db1cfecb
7
8 waf-utils.eclass: Fix ban condition
9
10 eclass/waf-utils.eclass | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass
14 index 4f08757..696d05d 100644
15 --- a/eclass/waf-utils.eclass
16 +++ b/eclass/waf-utils.eclass
17 @@ -73,7 +73,7 @@ waf-utils_src_configure() {
18 fi
19 fi
20
21 - [[ ${fail} ]] || die "Invalid use of ${ECLASS}"
22 + [[ ${fail} ]] && die "Invalid use of waf-utils.eclass"
23
24 local libdir=""