* Fixed cross compiling
This commit is contained in:
parent
b8430dcff7
commit
fd76e7f7fe
2 changed files with 4 additions and 2 deletions
|
@ -450,7 +450,9 @@ ifneq ($(CONFIG_PACKAGE_luci-i18n-english),)
|
|||
endif
|
||||
|
||||
|
||||
MAKE_FLAGS += MODULES="$(PKG_SELECTED_MODULES)" LUA_TARGET="$(LUA_TARGET)" CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" LDFLAGS="$(TARGET_LDFLAGS)"
|
||||
MAKE_FLAGS += MODULES="$(PKG_SELECTED_MODULES)" LUA_TARGET="$(LUA_TARGET)" \
|
||||
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" LDFLAGS="$(TARGET_LDFLAGS)" \
|
||||
CFOPTS="$(TARGET_CONFIGURE_OPTS)"
|
||||
|
||||
|
||||
$(eval $(call BuildPackage,luci-core))
|
||||
|
|
|
@ -32,7 +32,7 @@ $(BOA_DIR)/.patched: $(BOA_DIR)/.prepared $(BOA_PATCHDIR)/series
|
|||
touch $@
|
||||
|
||||
$(BOA_DIR)/.configured: $(BOA_DIR)/.patched
|
||||
(cd $(BOA_DIR); ./configure --disable-debug --disable-gunzip)
|
||||
(cd $(BOA_DIR); ./configure --disable-debug --disable-gunzip $(CFOPTS))
|
||||
touch $@
|
||||
|
||||
boa-compile: $(BOA_DIR)/.configured
|
||||
|
|
Loading…
Reference in a new issue