diff options
author | John Klug <john.klug@multitech.com> | 2017-05-24 11:38:00 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2017-05-24 11:38:00 -0500 |
commit | daea27bda3d1981f2b7f93c9bfab0081cab2987b (patch) | |
tree | 0cf0f2306e75aded314ef8ffd6f8b8e432ae2ade | |
parent | dbeb60749fc22c2a7d18bd5bb5255389e3eeaabc (diff) | |
download | meta-multitech-daea27bda3d1981f2b7f93c9bfab0081cab2987b.tar.gz meta-multitech-daea27bda3d1981f2b7f93c9bfab0081cab2987b.tar.bz2 meta-multitech-daea27bda3d1981f2b7f93c9bfab0081cab2987b.zip |
Python Need "True" in getVar
-rw-r--r-- | recipes-kernel/rs9113/rs9113.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-kernel/rs9113/rs9113.inc b/recipes-kernel/rs9113/rs9113.inc index 5336663..1a238e1 100644 --- a/recipes-kernel/rs9113/rs9113.inc +++ b/recipes-kernel/rs9113/rs9113.inc @@ -44,7 +44,7 @@ python do_fetch_prepend () { bb.note ("ipk path is " + DR + "/" + ipkn) try: - gt += d.getVar("MTS_INTERNAL_GIT") + gt += d.getVar("MTS_INTERNAL_GIT",True) except TypeError: if os.path.isfile(DR + "/" + ipkn): return |