From: Otavio Salvador Date: Wed, 29 Feb 2012 05:41:16 +0000 (+0000) Subject: image.bbclass: do not create image manifest link if IMAGE_LINK_NAME is empty X-Git-Tag: 2015-4~11586 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d0f1ae1f8cf8ef4e5adc24cc6246d3849e51aa98;p=openembedded-core.git image.bbclass: do not create image manifest link if IMAGE_LINK_NAME is empty Signed-off-by: Otavio Salvador Signed-off-by: Richard Purdie --- diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 4db55ff779..ec75cc1e6b 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -322,8 +322,10 @@ make_zimage_symlink_relative () { write_image_manifest () { rootfs_${IMAGE_PKGTYPE}_write_manifest - rm -f ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.manifest - ln -s ${IMAGE_NAME}.rootfs.manifest ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.manifest + if [ -n "${IMAGE_LINK_NAME}" ]; then + rm -f ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.manifest + ln -s ${IMAGE_NAME}.rootfs.manifest ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.manifest + fi } # Make login manager(s) enable automatic login.