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 66CAE15808B for ; Thu, 24 Feb 2022 16:04:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DF4FE0837; Thu, 24 Feb 2022 16:04:49 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 300C4E0837 for ; Thu, 24 Feb 2022 16:04:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A5331342DA1 for ; Thu, 24 Feb 2022 16:04:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E24472EE for ; Thu, 24 Feb 2022 16:04:45 +0000 (UTC) From: "Rick Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rick Farina" Message-ID: <1645718665.f266fda1f2144143ecc40a73d2d3f4da1b3825f7.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/uhd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/uhd/uhd-4.1.0.4.ebuild X-VCS-Directories: net-wireless/uhd/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Rick Farina X-VCS-Revision: f266fda1f2144143ecc40a73d2d3f4da1b3825f7 X-VCS-Branch: master Date: Thu, 24 Feb 2022 16:04:45 +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: 0333e872-55de-4a0a-a970-de230cc5dc70 X-Archives-Hash: 62a7336e32db86d03e67ffa2b50ae680 commit: f266fda1f2144143ecc40a73d2d3f4da1b3825f7 Author: Rick Farina (Zero_Chaos) gentoo org> AuthorDate: Tue Feb 15 18:49:30 2022 +0000 Commit: Rick Farina gentoo org> CommitDate: Thu Feb 24 16:04:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f266fda1 net-wireless/uhd: qa fixes fix rm abuse posix -> bash Signed-off-by: Rick Farina (Zero_Chaos) gentoo.org> net-wireless/uhd/uhd-4.1.0.4.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-wireless/uhd/uhd-4.1.0.4.ebuild b/net-wireless/uhd/uhd-4.1.0.4.ebuild index 8fbc0ab1a94a..d522d556fc21 100644 --- a/net-wireless/uhd/uhd-4.1.0.4.ebuild +++ b/net-wireless/uhd/uhd-4.1.0.4.ebuild @@ -97,7 +97,7 @@ src_install() { cmake_src_install python_optimize use utils && python_fix_shebang "${ED}"/usr/$(get_libdir)/${PN}/utils/ - if [ "${PV}" != "9999" ]; then + if [[ "${PV}" != "9999" ]]; then rm -rf "${ED}/usr/bin/uhd_images_downloader" rm -rf "${ED}/usr/share/man/man1/uhd_images_downloader.1" fi @@ -105,7 +105,7 @@ src_install() { insinto /lib/udev/rules.d/ doins "${S}/utils/uhd-usrp.rules" - rm -rf "${WORKDIR}/images/winusb_driver" + rm -r "${WORKDIR}/images/winusb_driver" || die if ! use b100; then rm "${WORKDIR}"/images/usrp_b100* || die fi