From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CA370158090 for ; Fri, 6 May 2022 12:48:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1EA49E092C; Fri, 6 May 2022 12:48:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0553DE092C for ; Fri, 6 May 2022 12:48:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2227D341D41 for ; Fri, 6 May 2022 12:48:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE8A7287 for ; Fri, 6 May 2022 12:48:31 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1651841305.e88568ba3ef0c760e80cff02d567283a8b557d6b.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: metadata/install-qa-check.d/ X-VCS-Repository: repo/gentoo X-VCS-Files: metadata/install-qa-check.d/60libtool-la X-VCS-Directories: metadata/install-qa-check.d/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: e88568ba3ef0c760e80cff02d567283a8b557d6b X-VCS-Branch: master Date: Fri, 6 May 2022 12:48:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1bc35287-4f8a-48c6-b6f7-844d1fb30863 X-Archives-Hash: 83172c1977db620958ecec3e0e7637ee commit: e88568ba3ef0c760e80cff02d567283a8b557d6b Author: Ionen Wolkens gentoo org> AuthorDate: Fri May 6 12:43:57 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri May 6 12:48:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e88568ba metadata/install-qa-check.d: further fix 60libtool-la library check Without -t, the delimiter (newline) is not stripped and so elements do not end in .la to be replaced by .a Signed-off-by: Ionen Wolkens gentoo.org> metadata/install-qa-check.d/60libtool-la | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata/install-qa-check.d/60libtool-la b/metadata/install-qa-check.d/60libtool-la index 89b93fcfe6aa..48849f42e154 100644 --- a/metadata/install-qa-check.d/60libtool-la +++ b/metadata/install-qa-check.d/60libtool-la @@ -9,7 +9,7 @@ libtool_la_check() { # Bail out if there aren't any .la files being installed # TODO: use -d'' w/ newer EAPIs (bash 4.4+) - readarray files < <(find "${ED}"/usr/lib* -name '*.la' -print 2>/dev/null) + readarray -t files < <(find "${ED}"/usr/lib* -name '*.la' -print 2>/dev/null) [[ -n "${files[@]}" ]] || return if grep -q "dev-libs/libltdl" <<<${RDEPEND}; then