Skip to content

Commit

Permalink
balena-image.inc: Remove += from :append
Browse files Browse the repository at this point in the history
This fixes the warning:
+= is not a recommended operator combination, please replace it.

Signed-off-by: Florin Sarbu <florin@balena.io>
  • Loading branch information
floion committed Jun 6, 2024
1 parent 020b9d0 commit 73401a2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ IMAGE_INSTALL:append:imx8mm-lpddr4-evk = " \
pciutils \
"

DEPENDS:append:nitrogen8mm += "imx-boot"
DEPENDS:append:imx8mm-lpddr4-evk += "imx-boot"
DEPENDS:append:nitrogen8mm = " imx-boot"
DEPENDS:append:imx8mm-lpddr4-evk = " imx-boot"

# the BSP sets this variable so let's unset it since this makes our build fail
unset ROOTFS_SIZE

0 comments on commit 73401a2

Please sign in to comment.