Skip to content

Commit

Permalink
uboot-at91: fix build on buildbots
Browse files Browse the repository at this point in the history
Buidbots are throwing the following compile error:

In file included from tools/aisimage.c:9:
include/image.h:1133:12: fatal error: openssl/evp.h: No such file or directory
            ^~~~~~~~~~~~~~~
compilation terminated.

Fix it by passing `UBOOT_MAKE_FLAGS` variable to make.

Suggested-by: Petr Štetiar <ynezz@true.cz>
Fixes: 6d5611a ("uboot-at91: update to linux4sam-2022.04")
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
  • Loading branch information
claudiubeznea authored and ynezz committed Jul 13, 2022
1 parent a7a3a04 commit 95a24b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package/boot/uboot-at91/Makefile
Expand Up @@ -175,7 +175,8 @@ define Build/Compile
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
CROSS_COMPILE=$(TARGET_CROSS) \
KCFLAGS="$(filter-out -fstack-protector \
-mfloat-abi=hard, $(TARGET_CFLAGS)) -mfloat-abi=soft"
-mfloat-abi=hard, $(TARGET_CFLAGS)) -mfloat-abi=soft" \
$(UBOOT_MAKE_FLAGS)
endef

$(eval $(call BuildPackage/U-Boot))

0 comments on commit 95a24b5

Please sign in to comment.