From: Florian Fainelli Date: Thu, 30 Jul 2009 13:05:51 +0000 (+0000) Subject: [package] move the global ipv6 option to the very bottom of the options passed to... X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=25ca61d1008f515cfe2f2f6cc5e1ee2d8cb57166;p=openwrt%2Fsvn-archive%2Farchive.git [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) SVN-Revision: 17050 --- diff --git a/include/package-defaults.mk b/include/package-defaults.mk index 3cba736f0f..e7b66b7f8f 100644 --- a/include/package-defaults.mk +++ b/include/package-defaults.mk @@ -61,8 +61,7 @@ CONFIGURE_ARGS = \ --mandir=$(CONFIGURE_PREFIX)/man \ --infodir=$(CONFIGURE_PREFIX)/info \ $(DISABLE_NLS) \ - $(DISABLE_LARGEFILE) \ - $(DISABLE_IPV6) + $(DISABLE_LARGEFILE) CONFIGURE_VARS = \ $(TARGET_CONFIGURE_OPTS) \ @@ -85,7 +84,8 @@ define Build/Configure/Default $(2) \ $(CONFIGURE_CMD) \ $(CONFIGURE_ARGS) \ - $(1); \ + $(1) \ + $(DISABLE_IPV6); \ fi; \ ) endef