diff options
-rwxr-xr-x | mbuto | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -242,7 +242,7 @@ profile_kselftests() { __pattern="$(list_join "${__colls}" '^' '$' '|')" __skip_targets="$(${AWK} '/^TARGETS/ { print $3}' ${__makefile} | \ - ${EGREP} -v "${__pattern}" | ${TR} '\n' ' ')" + ${GREP} -vE "${__pattern}" | ${TR} '\n' ' ')" ${RM} -rf "${__testpath}/kselftest_install" ${MAKE} SKIP_TARGETS="${__skip_targets}" -C ${__testpath} install \ @@ -262,7 +262,7 @@ profile_kselftests() { if [ ! -z "${__mods}" ]; then __pattern="$(list_join "${__mods}" '^obj-\$\(' '\).*.o$' '|')" __result="$(${BASENAME} -a -s .o \ - $(${EGREP} -rn --include "*Makefile" ${__pattern} | \ + $(${GREP} -rnE --include "*Makefile" ${__pattern} | \ ${TR} -d '+' | ${AWK} -F'=' '/=/ {print $2}'))" __find_pattern="$(list_join "${__result}" '-name ' '.ko ' '-o ')" |