diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2019-01-17 15:57:41 -0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-17 15:57:41 -0200 |
commit | 4d00e1d094571597fcfb686112157577fe49fc17 (patch) | |
tree | 169665d86e12f2aa2d6df71a856c1893267972d7 /recipes-devtools/qemu | |
parent | 9704df97f08cf5895e2f5bcfb33f1a53d10c7704 (diff) | |
parent | 74df05a7f0fd698cbbe65b9bf925f186891426ca (diff) | |
download | meta-freescale-4d00e1d094571597fcfb686112157577fe49fc17.tar.gz |
Merge pull request #40 from andred/for-merge
remove True option to getVar calls
Diffstat (limited to 'recipes-devtools/qemu')
-rw-r--r-- | recipes-devtools/qemu/qemu-qoriq_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-devtools/qemu/qemu-qoriq_git.bb b/recipes-devtools/qemu/qemu-qoriq_git.bb index 7423b5426..889603c90 100644 --- a/recipes-devtools/qemu/qemu-qoriq_git.bb +++ b/recipes-devtools/qemu/qemu-qoriq_git.bb | |||
@@ -25,7 +25,7 @@ COMPATIBLE_HOST_mipsarchn64 = "null" | |||
25 | PROVIDES = "qemu" | 25 | PROVIDES = "qemu" |
26 | 26 | ||
27 | python() { | 27 | python() { |
28 | pkgs = d.getVar('PACKAGES', True).split() | 28 | pkgs = d.getVar('PACKAGES').split() |
29 | for p in pkgs: | 29 | for p in pkgs: |
30 | if 'qemu-qoriq' in p: | 30 | if 'qemu-qoriq' in p: |
31 | d.appendVar("RPROVIDES_%s" % p, p.replace('qemu-qoriq', 'qemu')) | 31 | d.appendVar("RPROVIDES_%s" % p, p.replace('qemu-qoriq', 'qemu')) |