[oe-commits] Richard Purdie : postgresql: Add explict getVar expansion parameter

git at git.openembedded.org git at git.openembedded.org
Thu Jul 16 19:11:31 UTC 2015


Module: meta-openembedded.git
Branch: master-next
Commit: 0281d2b7969e4c8766abf8c9f69e5ffbc987eae7
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=0281d2b7969e4c8766abf8c9f69e5ffbc987eae7

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Wed Jul  8 18:00:57 2015 +0100

postgresql: Add explict getVar expansion parameter

Bitbake is likely to require this parameter in future, add
the default value.

Patch generated with the command:

sed -e 's:\(getVar([^,()]*\)\s*):\1, False):g' -i `grep -ril getVar *`

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>

---

 meta-oe/recipes-support/postgresql/postgresql.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc b/meta-oe/recipes-support/postgresql/postgresql.inc
index c7aed9e..15fb7c7 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() {
         if name is None or name.strip() == "":
             return
 
-        fpack=d.getVar('PACKAGES') or ""
+        fpack=d.getVar('PACKAGES', False) or ""
         fpack="${PN}-" + name + " " + fpack
         if dbg:
             fpack="${PN}-" + name + "-dbg" + " " + fpack
         d.setVar('PACKAGES', fpack)
 
     conf=(d.getVar('PACKAGECONFIG', True) or "").split()
-    pack=d.getVar('PACKAGES') or ""
+    pack=d.getVar('PACKAGES', False) or ""
     bb.debug(1, "PACKAGECONFIG=%s" % conf)
     bb.debug(1, "PACKAGES1=%s" % pack )
 



More information about the Openembedded-commits mailing list