diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-03 07:23:15 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-03 07:23:15 +0000 |
commit | 037a01de617369e98025df7188da01dbe443d58d (patch) | |
tree | 5172a87d15636eae45553b1236a151de84bbaba8 /libc/misc/Makefile | |
parent | 2b525c3b4f713a390931a46016a164c691b173e0 (diff) |
Some more buildroot-motivated fixes. Avoid installing some headers, as
well as stub libintl, depending on configuration.
Diffstat (limited to 'libc/misc/Makefile')
-rw-r--r-- | libc/misc/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/misc/Makefile b/libc/misc/Makefile index 24a963516..875898259 100644 --- a/libc/misc/Makefile +++ b/libc/misc/Makefile @@ -27,7 +27,7 @@ include $(TOPDIR)Rules.mak DIRS = assert ctype dirent file fnmatch glob internals \ mntent syslog time utmp sysvipc statfs \ - error ttyent gnu search intl locale + error ttyent gnu search locale ifeq ($(strip $(UCLIBC_HAS_REGEX)),y) DIRS += regex endif @@ -40,6 +40,9 @@ endif ifeq ($(strip $(UCLIBC_HAS_WCHAR)),y) DIRS += wctype wchar endif +ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y) +DIRS += intl +endif all: libc.a |