Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/ebuild-helpers/
Date: Mon, 05 Feb 2018 04:40:01
Message-Id: 1517805576.9215056d3eb9814b2ffee9bd7c7cc8a540fcc7ee.zmedico@gentoo
1 commit: 9215056d3eb9814b2ffee9bd7c7cc8a540fcc7ee
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 5 04:38:09 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 5 04:39:36 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=9215056d
7
8 bin/ebuild-helpers/newins: ${*:3} for explicit concatenation
9
10 Reported-by: R0b0t1 <r030t1 <AT> gmail.com>
11
12 bin/ebuild-helpers/newins | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/bin/ebuild-helpers/newins b/bin/ebuild-helpers/newins
16 index 8032a8f2f..30e54b7e5 100755
17 --- a/bin/ebuild-helpers/newins
18 +++ b/bin/ebuild-helpers/newins
19 @@ -12,7 +12,7 @@ if [[ -z ${T} ]] || [[ -z ${2} ]] ; then
20 fi
21
22 (($#>2)) && \
23 - eqawarn "QA Notice: ${helper} called with more than 2 arguments: ${@:3}"
24 + eqawarn "QA Notice: ${helper} called with more than 2 arguments: ${*:3}"
25
26 stdin=
27 if ___eapi_newins_supports_reading_from_standard_input && [[ $1 == "-" ]]; then