diff options
-rw-r--r-- | bitbake/lib/bb/providers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/providers.py b/bitbake/lib/bb/providers.py index 516d45e4aa..8c1c31a5c5 100644 --- a/bitbake/lib/bb/providers.py +++ b/bitbake/lib/bb/providers.py | |||
@@ -94,7 +94,7 @@ def versionVariableMatch(cfgData, keyword, pn): | |||
94 | 94 | ||
95 | # pn can contain '_', e.g. gcc-cross-x86_64 and an override cannot | 95 | # pn can contain '_', e.g. gcc-cross-x86_64 and an override cannot |
96 | # hence we do this manually rather than use OVERRIDES | 96 | # hence we do this manually rather than use OVERRIDES |
97 | ver = cfgData.getVar("%s_VERSION_pn-%s" % (keyword, pn)) | 97 | ver = cfgData.getVar("%s_VERSION:pn-%s" % (keyword, pn)) |
98 | if not ver: | 98 | if not ver: |
99 | ver = cfgData.getVar("%s_VERSION_%s" % (keyword, pn)) | 99 | ver = cfgData.getVar("%s_VERSION_%s" % (keyword, pn)) |
100 | if not ver: | 100 | if not ver: |