diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/base.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index f0780011bd..d711ae477e 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -391,7 +391,8 @@ python () { | |||
391 | items = flagval.split(",") | 391 | items = flagval.split(",") |
392 | num = len(items) | 392 | num = len(items) |
393 | if num > 4: | 393 | if num > 4: |
394 | bb.error("Only enable,disable,depend,rdepend can be specified!") | 394 | bb.error("%s: PACKAGECONFIG[%s] Only enable,disable,depend,rdepend can be specified!" |
395 | % (d.getVar('PN', True), flag)) | ||
395 | 396 | ||
396 | if flag in pkgconfig: | 397 | if flag in pkgconfig: |
397 | if num >= 3 and items[2]: | 398 | if num >= 3 and items[2]: |