[yocto] [yocto-autobuilder][PATCH] bin/release-scripts/relnotes.py

Graydon, Tracy tracy.graydon at intel.com
Thu Mar 10 17:37:22 PST 2016


Fixed a hardcoded statement that had "14.0.1" instead of the correct POKY_VER
variable.

Signed-off-by: Graydon, Tracy <tracy.graydon at 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




More information about the yocto mailing list