summaryrefslogtreecommitdiff
path: root/libc/misc/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-08-24 05:11:50 +0000
committerEric Andersen <andersen@codepoet.org>2003-08-24 05:11:50 +0000
commitf3679a2f8168d6f9c66763a7841366f51504bbe3 (patch)
treef2a5c29ad2dabbe9df3be7793ff059480a5b8d71 /libc/misc/Makefile
parent50660812be5588036a14fc85af16bccef68fac02 (diff)
conditionally add wordexp, in this case ripped from glibc.
I hate to add this stuff, but it is specified by SuSv3...
Diffstat (limited to 'libc/misc/Makefile')
-rw-r--r--libc/misc/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/misc/Makefile b/libc/misc/Makefile
index 037e2154d..24a963516 100644
--- a/libc/misc/Makefile
+++ b/libc/misc/Makefile
@@ -27,10 +27,13 @@ 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 intl locale
ifeq ($(strip $(UCLIBC_HAS_REGEX)),y)
DIRS += regex
endif
+ifeq ($(strip $(UCLIBC_HAS_WORDEXP)),y)
+DIRS += wordexp
+endif
ifeq ($(strip $(UCLIBC_HAS_THREADS)),y)
DIRS += pthread
endif