|
Message-Id: <1457416251-26134-1-git-send-email-masanori.ogino@gmail.com> Date: Tue, 8 Mar 2016 14:50:51 +0900 From: OGINO Masanori <masanori.ogino@...il.com> To: musl@...ts.openwall.com Cc: OGINO Masanori <masanori.ogino@...il.com> Subject: [PATCH] Add `intl` to EMPTY_LIB_NAMES. It makes programs that depend on libintl work with musl. Signed-off-by: OGINO Masanori <masanori.ogino@...il.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ec54880..394b32f 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ GENERIC_INCLUDES = $(wildcard $(srcdir)/arch/generic/bits/*.h) INCLUDES = $(wildcard $(srcdir)/include/*.h $(srcdir)/include/*/*.h) ALL_INCLUDES = $(sort $(INCLUDES:$(srcdir)/%=%) $(GENH:obj/%=%) $(ARCH_INCLUDES:$(srcdir)/arch/$(ARCH)/%=include/%) $(GENERIC_INCLUDES:$(srcdir)/arch/generic/%=include/%)) -EMPTY_LIB_NAMES = m rt pthread crypt util xnet resolv dl +EMPTY_LIB_NAMES = m rt pthread crypt util xnet resolv dl intl EMPTY_LIBS = $(EMPTY_LIB_NAMES:%=lib/lib%.a) CRT_LIBS = $(addprefix lib/,$(notdir $(CRT_OBJS))) STATIC_LIBS = lib/libc.a -- 2.4.10
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.