diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/sstate.bbclass | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 5a22ff8382..2b5b7cdc2a 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -676,12 +676,10 @@ def setscene_depvalid(task, taskdependees, notneeded, d): | |||
676 | 676 | ||
677 | bb.debug(2, "Considering setscene task: %s" % (str(taskdependees[task]))) | 677 | bb.debug(2, "Considering setscene task: %s" % (str(taskdependees[task]))) |
678 | 678 | ||
679 | def isNative(x): | ||
680 | return x.endswith("-native") | ||
681 | def isNativeCross(x): | 679 | def isNativeCross(x): |
682 | return x.endswith("-native") or x.endswith("-cross") or x.endswith("-cross-initial") | 680 | return x.endswith("-native") or x.endswith("-cross") or x.endswith("-cross-initial") or x.endswith("-crosssdk") or x.endswith("-crosssdk-initial") |
683 | def isSafeDep(x): | 681 | def isSafeDep(x): |
684 | if x in ["quilt-native", "autoconf-native", "automake-native", "gnu-config-native", "libtool-native", "pkgconfig-native", "gcc-cross", "binutils-cross", "gcc-cross-initial"]: | 682 | if x in ["quilt-native", "autoconf-native", "automake-native", "gnu-config-native", "libtool-native", "pkgconfig-native", "gcc-cross", "binutils-cross", "gcc-cross-initial", "gcc-crosssdk", "binutils-crosssdk", "gcc-crosssdk-initial"]: |
685 | return True | 683 | return True |
686 | return False | 684 | return False |
687 | def isPostInstDep(x): | 685 | def isPostInstDep(x): |