diff options
| -rw-r--r-- | meta/lib/oe/distro_check.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/meta/lib/oe/distro_check.py b/meta/lib/oe/distro_check.py index ad13d5e492..8ed5b0ec80 100644 --- a/meta/lib/oe/distro_check.py +++ b/meta/lib/oe/distro_check.py | |||
| @@ -73,13 +73,12 @@ def clean_package_list(package_list): | |||
| 73 | def get_latest_released_meego_source_package_list(): | 73 | def get_latest_released_meego_source_package_list(): |
| 74 | "Returns list of all the name os packages in the latest meego distro" | 74 | "Returns list of all the name os packages in the latest meego distro" |
| 75 | 75 | ||
| 76 | if not os.path.isfile("/tmp/Meego-1.1"): | ||
| 77 | os.mknod("/tmp/Meego-1.1") | ||
| 78 | f = open("/tmp/Meego-1.1", "r") | ||
| 79 | package_names = [] | 76 | package_names = [] |
| 80 | for line in f: | 77 | try: |
| 81 | package_names.append(line[:-1] + ":" + "main") # Also strip the '\n' at the end | 78 | f = open("/tmp/Meego-1.1", "r") |
| 82 | 79 | for line in f: | |
| 80 | package_names.append(line[:-1] + ":" + "main") # Also strip the '\n' at the end | ||
| 81 | except IOError: pass | ||
| 83 | package_list=clean_package_list(package_names) | 82 | package_list=clean_package_list(package_names) |
| 84 | return "1.0", package_list | 83 | return "1.0", package_list |
| 85 | 84 | ||
