From d24ad453a6273ee9dec91d3d7caf072b8a2817e3 Mon Sep 17 00:00:00 2001 From: "Justin M. Forbes" Date: Mon, 15 Feb 2021 15:00:40 -0600 Subject: kernel-5.11.0-155 * Mon Feb 15 2021 Fedora Kernel Team [5.11.0-155] - Bluetooth: L2CAP: Try harder to accept device not knowing options (Bastien Nocera) Resolves: rhbz# Signed-off-by: Justin M. Forbes --- process_configs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'process_configs.sh') 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 -- cgit