Gentoo Archives: gentoo-commits

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: eclass/
Date: Mon, 27 Feb 2023 03:43:03
Message-Id: 1677468754.f8621872924609016acb5639ef26369fe51ad673.cybertailor@gentoo
1 commit: f8621872924609016acb5639ef26369fe51ad673
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Mon Feb 27 03:32:34 2023 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Mon Feb 27 03:32:34 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f8621872
7
8 shards.eclass: don't print env in src_configure
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 eclass/shards.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/shards.eclass b/eclass/shards.eclass
16 index 5c4ae2c82..0958709e3 100644
17 --- a/eclass/shards.eclass
18 +++ b/eclass/shards.eclass
19 @@ -56,10 +56,10 @@ shards_src_configure() {
20 debug-print-function ${FUNCNAME} "${@}"
21
22 crystal_configure
23 - einfo "CRYSTAL_OPTS='${CRYSTAL_OPTS}'"
24 + debug-print "CRYSTAL_OPTS='${CRYSTAL_OPTS}'"
25
26 export CRYSTAL_PATH="${BROOT}$(shards_get_libdir):$(crystal env CRYSTAL_PATH || die "'crystal env' failed")"
27 - einfo "CRYSTAL_PATH='${CRYSTAL_PATH}'"
28 + debug-print "CRYSTAL_PATH='${CRYSTAL_PATH}'"
29
30 tc-export CC
31 }