From 445607645ccebdc06b4a81f84b5035ec66a33548 Mon Sep 17 00:00:00 2001 From: Jan Horak Date: Aug 24 2021 10:03:24 +0000 Subject: Make shebang linter happy by removing executable flag from all third party rust source files --- diff --git a/thunderbird.spec b/thunderbird.spec index 041a35e..6cf4840 100644 --- a/thunderbird.spec +++ b/thunderbird.spec @@ -396,11 +396,7 @@ echo "ac_add_options --disable-crashreporter" >> .mozconfig echo 'export NODEJS="%{_buildrootdir}/bin/node-stdout-nonblocking-wrapper"' >> .mozconfig # Remove executable bit to make brp-mangle-shebangs happy. -chmod -x third_party/rust/itertools/src/lib.rs -chmod a-x third_party/rust/gfx-backend-vulkan/src/*.rs -chmod a-x third_party/rust/gfx-hal/src/*.rs -chmod a-x third_party/rust/ash/src/extensions/ext/*.rs -chmod a-x third_party/rust/ash/src/extensions/khr/*.rs +find third_party -type f -iname "*.rs"|xargs chmod a-x #===============================================================================