diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/spec2yocto.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/spec2yocto.py b/tools/spec2yocto.py index 95da15a05..791b1e556 100755 --- a/tools/spec2yocto.py +++ b/tools/spec2yocto.py @@ -1942,9 +1942,9 @@ class MetaSpec: pp_provide not in SPEC2YOCTO_CONFIG.get_inherit_python() and \ pp_provide not in SPEC2YOCTO_CONFIG.get_inherit_tizen_cmake() and \ pp_provide not in SPEC2YOCTO_CONFIG.get_inherit_perl() and \ - pp_provide not in ignore_depend_list and \ - pp_provide not in native_depend_list and \ - pp_provide not in cross_depend_list: + pp_provide not in ignore_depend_list and \ + pp_provide not in native_depend_list and \ + pp_provide not in cross_depend_list: erro_msg = "No direct provider for package DEPENDS %s : \"%s\"." print erro_msg % ( self.__package_name, pp_provide ) |