diff options
author | Denys Vlasenko | 2018-04-16 11:04:03 +0200 |
---|---|---|
committer | Denys Vlasenko | 2018-04-16 11:04:03 +0200 |
commit | fa87abe807530daeb46f6730d4231489a4e2782b (patch) | |
tree | e966a498fb099c5ff388e0adcbb062f9a25df4d0 | |
parent | 058a153b6970660f3c284ac259986ae87507df9a (diff) | |
download | busybox-fa87abe807530daeb46f6730d4231489a4e2782b.zip busybox-fa87abe807530daeb46f6730d4231489a4e2782b.tar.gz |
build system: FEATURE_NSLOOKUP_BIG needs -lresolv
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | Makefile.flags | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.flags b/Makefile.flags index f3c897b..6f6142c 100644 --- a/Makefile.flags +++ b/Makefile.flags @@ -156,6 +156,10 @@ CPPFLAGS += $(SELINUX_CFLAGS) LDLIBS += $(if $(SELINUX_LIBS),$(SELINUX_LIBS:-l%=%),$(SELINUX_PC_MODULES:lib%=%)) endif +ifeq ($(CONFIG_FEATURE_NSLOOKUP_BIG),y) +LDLIBS += resolv +endif + ifeq ($(CONFIG_EFENCE),y) LDLIBS += efence endif |