diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-06 13:24:39 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-06 13:24:39 +0000 |
commit | 618cfef0235adcc41da02718cacd80f633dd9a9b (patch) | |
tree | 4bda57e1fe21b295c2252d5dbdcb61efd7b3a7ef | |
parent | e95d9fdf30df091d59c6cbaf804dbecf27617daa (diff) | |
download | busybox-w32-618cfef0235adcc41da02718cacd80f633dd9a9b.tar.gz busybox-w32-618cfef0235adcc41da02718cacd80f633dd9a9b.tar.bz2 busybox-w32-618cfef0235adcc41da02718cacd80f633dd9a9b.zip |
- mdev and grep use xregcomp. Closes bug #1021
git-svn-id: svn://busybox.net/trunk/busybox@16056 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | libbb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in index 0f2328072..05123e2af 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in | |||
@@ -56,11 +56,12 @@ LIBBB-$(CONFIG_WGET)+= uuencode.c | |||
56 | # allowing us to build busybox even if uclibc regex support is disabled. | 56 | # allowing us to build busybox even if uclibc regex support is disabled. |
57 | 57 | ||
58 | regex-y:= | 58 | regex-y:= |
59 | |||
60 | regex-$(CONFIG_AWK) += xregcomp.c | 59 | regex-$(CONFIG_AWK) += xregcomp.c |
61 | regex-$(CONFIG_SED) += xregcomp.c | 60 | regex-$(CONFIG_SED) += xregcomp.c |
62 | regex-$(CONFIG_LESS) += xregcomp.c | 61 | regex-$(CONFIG_LESS) += xregcomp.c |
63 | regex-$(CONFIG_DEVFSD) += xregcomp.c | 62 | regex-$(CONFIG_DEVFSD) += xregcomp.c |
63 | regex-$(CONFIG_MDEV) += xregcomp.c | ||
64 | regex-$(CONFIG_GREP) += xregcomp.c | ||
64 | 65 | ||
65 | # Sort has the happy side efect of returning a unique list | 66 | # Sort has the happy side efect of returning a unique list |
66 | LIBBB-y += $(sort $(regex-y)) | 67 | LIBBB-y += $(sort $(regex-y)) |