summaryrefslogtreecommitdiff
path: root/meta-phosphor/classes/obmc-xmlpatch.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta-phosphor/classes/obmc-xmlpatch.bbclass')
-rw-r--r--meta-phosphor/classes/obmc-xmlpatch.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-phosphor/classes/obmc-xmlpatch.bbclass b/meta-phosphor/classes/obmc-xmlpatch.bbclass
index 9dc37507a..359820622 100644
--- a/meta-phosphor/classes/obmc-xmlpatch.bbclass
+++ b/meta-phosphor/classes/obmc-xmlpatch.bbclass
@@ -7,15 +7,15 @@
#See patchxml.py for details on the XML patch format.
#
-inherit pythonnative
+inherit python3native
inherit obmc-phosphor-utils
do_patch[depends] = "mrw-patch-native:do_populate_sysroot"
def find_patch_files(d):
all_patches = listvar_to_list(d, 'SRC_URI')
- xml_patches = filter(lambda x: x.endswith('.patch.xml') and
- x.startswith('file://'), all_patches)
+ xml_patches = [x for x in all_patches if x.endswith('.patch.xml') and
+ x.startswith('file://')]
return [x.lstrip('file://') for x in xml_patches]