From: Zac Medico Date: Mon, 11 Feb 2013 07:19:51 +0000 (-0800) Subject: Check lib*/udev/rules.d for bug #455606. X-Git-Tag: v2.2.0_alpha162~10 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=75690c9a815b7d8526388efda36037736b6143ba;p=portage.git Check lib*/udev/rules.d for bug #455606. --- 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.