diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-01-16 21:55:46 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-01-17 06:38:24 +0100 |
commit | 922f477beaff8b3c0026c9e878974eb7d032468e (patch) | |
tree | 6721b84443d34db3b4a4465a277cc43ebf73ee4e | |
parent | 7921ad851370684cf256f9bf7812b763bfd62fca (diff) |
Makefile.in: Fix removal of libintl.h
A wrong filename was present in Makefile.in leaving libintl.h installed
even if libintl support is disabled leading to wrong configure checks
by other packages.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index c8afe1cd0..bb3549c19 100644 --- a/Makefile.in +++ b/Makefile.in @@ -281,7 +281,7 @@ HEADERS_RM-$(UCLIBC_HAS_GETOPT_LONG) += getopt.h HEADERS_RM-$(UCLIBC_HAS_IPV6) += netinet/ip6.h netinet/icmp6.h HEADERS_RM-$(UCLIBC_HAS_BACKTRACE) += execinfo.h HEADERS_RM-$(UCLIBC_HAS_LIBICONV) += iconv.h -HEADERS_RM-$(UCLIBC_HAS_LIBINTL) += intl.h +HEADERS_RM-$(UCLIBC_HAS_LIBINTL) += libintl.h HEADERS_RM-$(UCLIBC_HAS_LOCALE) += bits/uClibc_ctype.h HEADERS_RM-$(UCLIBC_HAS_PTY) += pty.h HEADERS_RM-$(UCLIBC_HAS_REALTIME) += mqueue.h bits/mqueue.h sched.h \ |