diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-09-06 13:24:39 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-09-06 13:24:39 +0000 |
commit | e614eaf40d0b4baad9996e81bcd92ab950111eee (patch) | |
tree | 4bda57e1fe21b295c2252d5dbdcb61efd7b3a7ef | |
parent | 4cb035dd2305e3cc1b817a934df176bf1eee4514 (diff) | |
download | busybox-e614eaf40d0b4baad9996e81bcd92ab950111eee.tar.gz |
- mdev and grep use xregcomp. Closes bug #1021
-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 # allowing us to build busybox even if uclibc regex support is disabled. regex-y:= - regex-$(CONFIG_AWK) += xregcomp.c regex-$(CONFIG_SED) += xregcomp.c regex-$(CONFIG_LESS) += xregcomp.c regex-$(CONFIG_DEVFSD) += xregcomp.c +regex-$(CONFIG_MDEV) += xregcomp.c +regex-$(CONFIG_GREP) += xregcomp.c # Sort has the happy side efect of returning a unique list LIBBB-y += $(sort $(regex-y)) |