diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/autotools.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index c49f0631ab..6b99bddd5d 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -148,7 +148,7 @@ python autotools_copy_aclocals () { if data[1] == "do_configure" and data[0] == pn: start = dep break - if not start: + if start is None: bb.fatal("Couldn't find ourself in BB_TASKDEPDATA?") # We need to find configure tasks which are either from <target> -> <target> |