aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-09-06 13:24:39 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-09-06 13:24:39 +0000
commite614eaf40d0b4baad9996e81bcd92ab950111eee (patch)
tree4bda57e1fe21b295c2252d5dbdcb61efd7b3a7ef
parent4cb035dd2305e3cc1b817a934df176bf1eee4514 (diff)
downloadbusybox-w32-e614eaf40d0b4baad9996e81bcd92ab950111eee.tar.gz
busybox-w32-e614eaf40d0b4baad9996e81bcd92ab950111eee.tar.bz2
busybox-w32-e614eaf40d0b4baad9996e81bcd92ab950111eee.zip
- mdev and grep use xregcomp. Closes bug #1021
-rw-r--r--libbb/Makefile.in3
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
58regex-y:= 58regex-y:=
59
60regex-$(CONFIG_AWK) += xregcomp.c 59regex-$(CONFIG_AWK) += xregcomp.c
61regex-$(CONFIG_SED) += xregcomp.c 60regex-$(CONFIG_SED) += xregcomp.c
62regex-$(CONFIG_LESS) += xregcomp.c 61regex-$(CONFIG_LESS) += xregcomp.c
63regex-$(CONFIG_DEVFSD) += xregcomp.c 62regex-$(CONFIG_DEVFSD) += xregcomp.c
63regex-$(CONFIG_MDEV) += xregcomp.c
64regex-$(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
66LIBBB-y += $(sort $(regex-y)) 67LIBBB-y += $(sort $(regex-y))