diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-10-07 22:08:33 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-10-07 22:58:30 +0200 |
commit | 263c2f83177992b402d48cffda0e97faffe21f1d (patch) | |
tree | b981941d8fb51c87a3037635cea507b081041c6c | |
parent | 0bc7a43ff3297ecff969fe9f865ff34e3b88a39e (diff) | |
download | buildroot-novena-263c2f83177992b402d48cffda0e97faffe21f1d.tar.gz buildroot-novena-263c2f83177992b402d48cffda0e97faffe21f1d.zip |
honour DISABLE_IPV6
pass --disable-ipv6 to autoconfig packages if IPv6 support is turned off
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/Makefile.autotools.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index d36c884f0..c3257cfbe 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -256,6 +256,7 @@ $(BUILD_DIR)/%/.stamp_configured: $(DISABLE_DOCUMENTATION) \ $(DISABLE_NLS) \ $(DISABLE_LARGEFILE) \ + $(DISABLE_IPV6) \ $(QUIET) $($(PKG)_CONF_OPT) $(Q)touch $@ |