uboot-at91: fix build on buildbots
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: 6d5611af28
("uboot-at91: update to linux4sam-2022.04")
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
This commit is contained in:
parent
a7a3a04a2c
commit
95a24b5479
1 changed files with 2 additions and 1 deletions
|
@ -175,7 +175,8 @@ define Build/Compile
|
||||||
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
||||||
CROSS_COMPILE=$(TARGET_CROSS) \
|
CROSS_COMPILE=$(TARGET_CROSS) \
|
||||||
KCFLAGS="$(filter-out -fstack-protector \
|
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
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage/U-Boot))
|
$(eval $(call BuildPackage/U-Boot))
|
||||||
|
|
Loading…
Reference in a new issue