1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 05:57:32 +02:00

[package] move the global ipv6 option to the very bottom of the options passed to configure scripts, so that we can still override it in package makefiles (#5592, #5586)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17050 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2009-07-30 13:05:51 +00:00
parent 3eeb7b4c0c
commit b1257bc84f

View File

@ -61,8 +61,7 @@ CONFIGURE_ARGS = \
--mandir=$(CONFIGURE_PREFIX)/man \ --mandir=$(CONFIGURE_PREFIX)/man \
--infodir=$(CONFIGURE_PREFIX)/info \ --infodir=$(CONFIGURE_PREFIX)/info \
$(DISABLE_NLS) \ $(DISABLE_NLS) \
$(DISABLE_LARGEFILE) \ $(DISABLE_LARGEFILE)
$(DISABLE_IPV6)
CONFIGURE_VARS = \ CONFIGURE_VARS = \
$(TARGET_CONFIGURE_OPTS) \ $(TARGET_CONFIGURE_OPTS) \
@ -85,7 +84,8 @@ define Build/Configure/Default
$(2) \ $(2) \
$(CONFIGURE_CMD) \ $(CONFIGURE_CMD) \
$(CONFIGURE_ARGS) \ $(CONFIGURE_ARGS) \
$(1); \ $(1) \
$(DISABLE_IPV6); \
fi; \ fi; \
) )
endef endef