diff options
Diffstat (limited to 'meta/classes/license_image.bbclass')
-rw-r--r-- | meta/classes/license_image.bbclass | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/meta/classes/license_image.bbclass b/meta/classes/license_image.bbclass index 682d46237f..702e9f9c55 100644 --- a/meta/classes/license_image.bbclass +++ b/meta/classes/license_image.bbclass | |||
@@ -200,14 +200,16 @@ def license_deployed_manifest(d): | |||
200 | image_license_manifest = os.path.join(lic_manifest_dir, 'image_license.manifest') | 200 | image_license_manifest = os.path.join(lic_manifest_dir, 'image_license.manifest') |
201 | write_license_files(d, image_license_manifest, man_dic, rootfs=False) | 201 | write_license_files(d, image_license_manifest, man_dic, rootfs=False) |
202 | 202 | ||
203 | lic_manifest_symlink_dir = os.path.join(d.getVar('LICENSE_DIRECTORY'), | 203 | link_name = d.getVar('IMAGE_LINK_NAME') |
204 | d.getVar('IMAGE_LINK_NAME')) | 204 | if link_name: |
205 | # remove old symlink | 205 | lic_manifest_symlink_dir = os.path.join(d.getVar('LICENSE_DIRECTORY'), |
206 | if os.path.islink(lic_manifest_symlink_dir): | 206 | link_name) |
207 | os.unlink(lic_manifest_symlink_dir) | 207 | # remove old symlink |
208 | 208 | if os.path.islink(lic_manifest_symlink_dir): | |
209 | # create the image dir symlink | 209 | os.unlink(lic_manifest_symlink_dir) |
210 | os.symlink(lic_manifest_dir, lic_manifest_symlink_dir) | 210 | |
211 | # create the image dir symlink | ||
212 | os.symlink(lic_manifest_dir, lic_manifest_symlink_dir) | ||
211 | 213 | ||
212 | def get_deployed_dependencies(d): | 214 | def get_deployed_dependencies(d): |
213 | """ | 215 | """ |