Skip to content
Snippets Groups Projects
Commit ae6d3b0c authored by Samuli Piippo's avatar Samuli Piippo
Browse files

bootfs: correctly check for empty define


Change-Id: Iece54b106059bfba07adfbd84a1ae76b9104b43f
Reviewed-by: default avatarKalle Viironen <kalle.viironen@digia.com>
parent 9d8cec23
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ BOOTFS_LINK_NAME = "${IMAGE_BASENAME}-boot-${MACHINE}" ...@@ -26,7 +26,7 @@ BOOTFS_LINK_NAME = "${IMAGE_BASENAME}-boot-${MACHINE}"
BOOTFS_DEPENDS ?= "" BOOTFS_DEPENDS ?= ""
fakeroot do_bootfs () { fakeroot do_bootfs () {
if [ -n ${BOOTFS_CONTENT} ]; then if [ -z "${BOOTFS_CONTENT}" ]; then
exit 0 exit 0
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment