Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: metadata/install-qa-check.d/
Date: Tue, 26 Apr 2022 23:45:22
Message-Id: 1651016713.5a87e0946933feef33a95314e08abf0eb1a345a4.sam@gentoo
1 commit: 5a87e0946933feef33a95314e08abf0eb1a345a4
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 26 23:45:01 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 23:45:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a87e094
7
8 metadata/install-qa-check.d: try to silence libtool-la stderr
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 metadata/install-qa-check.d/60libtool-la | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/metadata/install-qa-check.d/60libtool-la b/metadata/install-qa-check.d/60libtool-la
16 index bd475b6a016d..af69a8b897ab 100644
17 --- a/metadata/install-qa-check.d/60libtool-la
18 +++ b/metadata/install-qa-check.d/60libtool-la
19 @@ -8,7 +8,7 @@ libtool_la_check() {
20 fi
21
22 # Bail out if there aren't any .la files being installed
23 - readarray -d '' files < <(find "${ED}"/usr/lib* -name '*.la' -print0)
24 + readarray -d '' files < <(find "${ED}"/usr/lib* -name '*.la' -print0 2>/dev/null)
25 [[ -n "${files[@]}" ]] || return
26
27 if grep -q "dev-libs/libltdl" <<<${RDEPEND}; then