diff options
| -rw-r--r-- | meta-oe/recipes-support/postgresql/postgresql.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc b/meta-oe/recipes-support/postgresql/postgresql.inc index c7aed9ec4e..15fb7c7d42 100644 --- a/meta-oe/recipes-support/postgresql/postgresql.inc +++ b/meta-oe/recipes-support/postgresql/postgresql.inc | |||
| @@ -84,14 +84,14 @@ python populate_packages_prepend() { | |||
| 84 | if name is None or name.strip() == "": | 84 | if name is None or name.strip() == "": |
| 85 | return | 85 | return |
| 86 | 86 | ||
| 87 | fpack=d.getVar('PACKAGES') or "" | 87 | fpack=d.getVar('PACKAGES', False) or "" |
| 88 | fpack="${PN}-" + name + " " + fpack | 88 | fpack="${PN}-" + name + " " + fpack |
| 89 | if dbg: | 89 | if dbg: |
| 90 | fpack="${PN}-" + name + "-dbg" + " " + fpack | 90 | fpack="${PN}-" + name + "-dbg" + " " + fpack |
| 91 | d.setVar('PACKAGES', fpack) | 91 | d.setVar('PACKAGES', fpack) |
| 92 | 92 | ||
| 93 | conf=(d.getVar('PACKAGECONFIG', True) or "").split() | 93 | conf=(d.getVar('PACKAGECONFIG', True) or "").split() |
| 94 | pack=d.getVar('PACKAGES') or "" | 94 | pack=d.getVar('PACKAGES', False) or "" |
| 95 | bb.debug(1, "PACKAGECONFIG=%s" % conf) | 95 | bb.debug(1, "PACKAGECONFIG=%s" % conf) |
| 96 | bb.debug(1, "PACKAGES1=%s" % pack ) | 96 | bb.debug(1, "PACKAGES1=%s" % pack ) |
| 97 | 97 | ||
