diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-08-01 12:10:22 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-08-01 12:10:22 +0000 |
commit | f56936e0237d056ea687a92fe0034ba3c794fa8c (patch) | |
tree | 42081c0ddce18dea99a5adea811f15ca25948e04 | |
parent | 467b4f62aeedd7cb702dcaf924876d019e5e84e8 (diff) | |
download | upstream-f56936e0237d056ea687a92fe0034ba3c794fa8c.tar.gz upstream-f56936e0237d056ea687a92fe0034ba3c794fa8c.tar.bz2 upstream-f56936e0237d056ea687a92fe0034ba3c794fa8c.zip |
[package] revert 17050 this was not the right way to fix this
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17075 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 e7d74b1ae1..2cfce7a92d 100644 --- a/include/package-defaults.mk +++ b/include/package-defaults.mk @@ -61,7 +61,8 @@ CONFIGURE_ARGS = \ --mandir=$(CONFIGURE_PREFIX)/man \ --infodir=$(CONFIGURE_PREFIX)/info \ $(DISABLE_NLS) \ - $(DISABLE_LARGEFILE) + $(DISABLE_LARGEFILE) \ + $(DISABLE_IPV6) CONFIGURE_VARS = \ $(TARGET_CONFIGURE_OPTS) \ @@ -84,8 +85,7 @@ define Build/Configure/Default $(2) \ $(CONFIGURE_CMD) \ $(CONFIGURE_ARGS) \ - $(1) \ - $(DISABLE_IPV6); \ + $(1); \ fi; \ ) endef |