diff options
| author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-30 13:05:51 +0000 | 
|---|---|---|
| committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-30 13:05:51 +0000 | 
| commit | b1257bc84fb6ae74053ae42925fe2d941ffc8cc1 (patch) | |
| tree | 1376ec6d21c1ddc0bb37859852fc34a66486975a | |
| parent | 3eeb7b4c0ccb00e99e3f51ea178238b7c7354305 (diff) | |
[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
| -rw-r--r-- | include/package-defaults.mk | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/include/package-defaults.mk b/include/package-defaults.mk index 3cba736f0..e7b66b7f8 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 | 
