diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-08 16:49:37 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-08 16:49:37 +0000 |
commit | f89c67d20b3014038d023f8b686a3df2c797bd9f (patch) | |
tree | b0168b139177edee99b0edca650ead82198b8a26 /libc/misc/Makefile | |
parent | 8bceedc67ca3ec732f7d6524cb023352d4aaf0c7 (diff) | |
download | uClibc-alpine-f89c67d20b3014038d023f8b686a3df2c797bd9f.tar.bz2 uClibc-alpine-f89c67d20b3014038d023f8b686a3df2c797bd9f.tar.xz |
Add in wordexp support (mostly stubbed out for now) since the busybox
shell, lash, is about to start using wordexp.
-Erik
Diffstat (limited to 'libc/misc/Makefile')
-rw-r--r-- | libc/misc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/misc/Makefile b/libc/misc/Makefile index ae61b13a7..6334bcf15 100644 --- a/libc/misc/Makefile +++ b/libc/misc/Makefile @@ -25,7 +25,8 @@ include $(TOPDIR)Rules.mak LIBC=$(TOPDIR)libc.a -DIRS = assert crypt ctype fnmatch glob internals lsearch mntent syslog shm time utmp tsearch +DIRS = assert crypt ctype fnmatch glob internals lsearch mntent syslog shm \ + time utmp tsearch #wordexp # regex bombs out with an internal compiler error using m68k-pic-coff-gcc. ifneq ($(TARGET_ARCH),m68k) |