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: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Peter Korsgaard 2015-11-25 21:38:44 +01:00
parent 1ec9588a65
commit cc792014f6

View File

@ -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