Commit cc792014 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

iodine: use correct CFLAGS/LDFLAGS



The iodine build system correctly appends the needed CFLAGS/LDFLAGS to what
was passed in the environment, so use TARGET_CONFIGURE_OPTS to ensure our
flags are passed.

Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 1ec9588a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ IODINE_LICENSE = MIT
IODINE_LICENSE_FILES = README

define IODINE_BUILD_CMDS
	$(MAKE) CC="$(TARGET_CC)" ARCH=$(BR2_ARCH) -C $(@D)
	$(TARGET_CONFIGURE_OPTS) $(MAKE) ARCH=$(BR2_ARCH) -C $(@D)
endef

define IODINE_INSTALL_TARGET_CMDS