From 75690c9a815b7d8526388efda36037736b6143ba Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 10 Feb 2013 23:19:51 -0800 Subject: [PATCH] Check lib*/udev/rules.d for bug #455606. --- bin/misc-functions.sh | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index f23545e5b..b2b9e3578 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -248,16 +248,17 @@ install_qa_check() { eqawarn "$f" fi - if [[ -d ${ED}/etc/udev/rules.d ]] ; then - f= - for x in $(ls "${ED}/etc/udev/rules.d") ; do - f+=" etc/udev/rules.d/$x\n" - done - if [[ -n $f ]] ; then - eqawarn "QA Notice: udev rules should be installed in /lib/udev/rules.d:" - eqawarn - eqawarn "$f" - fi + set +f + f= + for x in "${ED}etc/udev/rules.d/"* "${ED}lib"*"/udev/rules.d/"* ; do + [[ -e ${x} ]] || continue + [[ ${x} == ${ED}lib/udev/rules.d/* ]] && continue + f+=" ${x#${ED}}\n" + done + if [[ -n $f ]] ; then + eqawarn "QA Notice: udev rules should be installed in /lib/udev/rules.d:" + eqawarn + eqawarn "$f" fi # Now we look for all world writable files. -- 2.26.2