Fixed a hardcoded statement that had "14.0.1" instead of the correct POKY_VER variable.
Signed-off-by: Graydon, Tracy <tracy.gray...@intel.com> --- bin/release_scripts/relnotes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/release_scripts/relnotes.py b/bin/release_scripts/relnotes.py index 3c32e28..46b79dd0 100755 --- a/bin/release_scripts/relnotes.py +++ b/bin/release_scripts/relnotes.py @@ -132,7 +132,7 @@ if __name__ == '__main__': os.chdir(RELEASE_DIR) files = glob.glob('*.bz2') allfiles = filter(lambda f: os.path.isfile(f), files) - found = filter(lambda x: '14.0.1' not in x, allfiles) + found = filter(lambda x: POKY_VER not in x, allfiles) filelist = filter(lambda z: 'fsl' not in z, found) filelist.sort() for item in filelist: -- 2.7.0 -- _______________________________________________ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto