package/uclibc: Fix removal of libintl.h
[uclibc-ng.git] / package / uclibc / 0004-Makefile.in-Fix-removal-of-libintl.h.patch
blob7cbcd47785d0f31b3721f8b93dc33477a7130f06
1 From 5f7b66fe28a785330a874a11001d7758dd5a59d7 Mon Sep 17 00:00:00 2001
2 From: Bernd Kuhls <bernd.kuhls@t-online.de>
3 Date: Mon, 16 Jan 2017 21:01:43 +0100
4 Subject: [PATCH 1/1] Makefile.in: Fix removal of libintl.h
6 A wrong filename was present in Makefile.in leaving libintl.h installed
7 even if libintl support is disabled leading to wrong configure checks
8 by other packages.
10 Patch sent upstream:
11 http://mailman.uclibc-ng.org/pipermail/devel/2017-January/001360.html
13 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
14 ---
15 Makefile.in | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
18 diff --git a/Makefile.in b/Makefile.in
19 index c8afe1cd0..bb3549c19 100644
20 --- a/Makefile.in
21 +++ b/Makefile.in
22 @@ -281,7 +281,7 @@ HEADERS_RM-$(UCLIBC_HAS_GETOPT_LONG) += getopt.h
23 HEADERS_RM-$(UCLIBC_HAS_IPV6) += netinet/ip6.h netinet/icmp6.h
24 HEADERS_RM-$(UCLIBC_HAS_BACKTRACE) += execinfo.h
25 HEADERS_RM-$(UCLIBC_HAS_LIBICONV) += iconv.h
26 -HEADERS_RM-$(UCLIBC_HAS_LIBINTL) += intl.h
27 +HEADERS_RM-$(UCLIBC_HAS_LIBINTL) += libintl.h
28 HEADERS_RM-$(UCLIBC_HAS_LOCALE) += bits/uClibc_ctype.h
29 HEADERS_RM-$(UCLIBC_HAS_PTY) += pty.h
30 HEADERS_RM-$(UCLIBC_HAS_REALTIME) += mqueue.h bits/mqueue.h sched.h \
31 --
32 2.11.0