diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-09-12 01:32:07 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-14 22:20:03 +0100 |
commit | 79fe476be233015c1c90e9c3fb4572267b5551d1 (patch) | |
tree | 8108a57e977a6e21d80bbeb263cdfa991b3dc3c9 /meta/recipes-devtools/apt | |
parent | 2f1a44d33d9ecceef69d11ef92c5369314cb3bf5 (diff) | |
download | openembedded-core-79fe476be233015c1c90e9c3fb4572267b5551d1.tar.gz openembedded-core-79fe476be233015c1c90e9c3fb4572267b5551d1.tar.bz2 openembedded-core-79fe476be233015c1c90e9c3fb4572267b5551d1.zip |
meta: cleanup d.getVar(var, 1)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/apt')
-rw-r--r-- | meta/recipes-devtools/apt/apt-native.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/apt/apt-native.inc b/meta/recipes-devtools/apt/apt-native.inc index 59aa04e119..9fa206efe1 100644 --- a/meta/recipes-devtools/apt/apt-native.inc +++ b/meta/recipes-devtools/apt/apt-native.inc @@ -17,7 +17,7 @@ python do_install () { } python do_install_config () { - indir = os.path.dirname(d.getVar('FILE',1)) + indir = os.path.dirname(d.getVar('FILE', True)) infile = open(oe.path.join(indir, 'files', 'apt.conf'), 'r') data = infile.read() infile.close() |