summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index bcf1c3526..2c75740c4 100644
--- a/Makefile
+++ b/Makefile
@@ -199,6 +199,19 @@ ifneq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
# Remove libintl header if no gettext support.
rm $(PREFIX)$(DEVEL_PREFIX)/include/libintl.h
endif
+ifneq ($(strip $(UCLIBC_HAS_REGEX)),y)
+ rm $(PREFIX)$(DEVEL_PREFIX)/include/regex.h
+ rm $(PREFIX)$(DEVEL_PREFIX)/include/regexp.h
+endif
+ifneq ($(strip $(UCLIBC_HAS_WORDEXP)),y)
+ rm $(PREFIX)$(DEVEL_PREFIX)/include/wordexp.h
+endif
+ifneq ($(strip $(UCLIBC_HAS_FTW)),y)
+ rm $(PREFIX)$(DEVEL_PREFIX)/include/ftw.h
+endif
+ifneq ($(strip $(UCLIBC_HAS_GLOB)),y)
+ rm $(PREFIX)$(DEVEL_PREFIX)/include/glob.h
+endif
-@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
chmod -f 755 $$i; chmod -f 644 $$i/*.h; \
done;