mirror of
https://git.yoctoproject.org/poky
synced 2026-04-15 21:32:13 +02:00
package_rpm.bbclass: Add additional install error detection
There is a condition where the package will fail to install, but smart does not capture the error. Add the error string to the scan list. (From OE-Core rev: 230068110e1cda349f9bf3886d8d06ac46deea37) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
4a7151b971
commit
8b671644e1
@@ -57,7 +57,7 @@ rpm_log_check() {
|
||||
lf_path="$2"
|
||||
|
||||
lf_txt="`cat $lf_path`"
|
||||
for keyword_die in "Cannot find package" "exit 1" ERR Fail
|
||||
for keyword_die in "unpacking of archive failed" "Cannot find package" "exit 1" ERR Fail
|
||||
do
|
||||
if (echo "$lf_txt" | grep -v log_check | grep "$keyword_die") >/dev/null 2>&1
|
||||
then
|
||||
|
||||
Reference in New Issue
Block a user