From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: development@lists.ipfire.org Subject: [PATCH 2/2] Update linux-firmware Date: Sat, 16 Sep 2023 13:25:48 +0000 Message-ID: <20230916132548.16420-2-jonatan.schlag@ipfire.org> In-Reply-To: <20230916132548.16420-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1815733511931829914==" List-Id: --===============1815733511931829914== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable When find returns nothing, chmod fails. So we when we get only blank lines, we do execute nothing (-r). Signed-off-by: Jonatan Schlag --- linux-firmware/linux-firmware.nm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-firmware/linux-firmware.nm b/linux-firmware/linux-firmware= .nm index 53413eacf..5e0eba43e 100644 --- a/linux-firmware/linux-firmware.nm +++ b/linux-firmware/linux-firmware.nm @@ -4,7 +4,7 @@ ############################################################################= ### =20 name =3D linux-firmware -version =3D 20221214 +version =3D 20230804 release =3D 1 =20 maintainer =3D Arne Fitzenreiter @@ -34,7 +34,7 @@ build install_cmds # Remove executable bits from any files find %{BUILDROOT}%{firmwaredir} -type f \ - -executable -print | xargs chmod -v a-x + -executable -print | xargs -r chmod -v a-x end end =20 --=20 2.39.2 --===============1815733511931829914==--