diff options
author | Justin M. Forbes <jforbes@fedoraproject.org> | 2021-02-15 15:00:40 -0600 |
---|---|---|
committer | Justin M. Forbes <jforbes@fedoraproject.org> | 2021-02-15 15:00:40 -0600 |
commit | d24ad453a6273ee9dec91d3d7caf072b8a2817e3 (patch) | |
tree | 89fe44c22464c9490c67c378a03302d9bc0a4abc /process_configs.sh | |
parent | 0b7b6f660388a2c14355a891c336dd7cb56c0989 (diff) | |
download | kernel-d24ad453a6273ee9dec91d3d7caf072b8a2817e3.tar.gz kernel-d24ad453a6273ee9dec91d3d7caf072b8a2817e3.tar.xz kernel-d24ad453a6273ee9dec91d3d7caf072b8a2817e3.zip |
kernel-5.11.0-155
* Mon Feb 15 2021 Fedora Kernel Team <kernel-team@fedoraproject.org> [5.11.0-155]
- Bluetooth: L2CAP: Try harder to accept device not knowing options (Bastien Nocera)
Resolves: rhbz#
Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
Diffstat (limited to 'process_configs.sh')
-rwxr-xr-x | process_configs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/process_configs.sh b/process_configs.sh index c1e81ca16..166d4766e 100755 --- a/process_configs.sh +++ b/process_configs.sh @@ -79,7 +79,7 @@ checkoptions() then while read -r LINE do - if find ./ -name "$(echo "$LINE" | awk -F "=" ' { print $1 } ' | awk ' { print $2 }')" | xargs -0 grep ^ | grep -q "process_configs_known_broken"; then + if find ./ -name "$(echo "$LINE" | awk -F "=" ' { print $1 } ' | awk ' { print $2 }')" -print0 | xargs -0 grep ^ | grep -q "process_configs_known_broken"; then # This is a known broken config. # See script help warning. checkoptions_error=false |