aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-15 10:04:50 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-15 10:04:50 +0000
commit3ceeaf44aad812918733b40832e316fc4b17e0ae (patch)
treebedf1a6609c828d3413ff52932bc795aaf14f423 /libbb
parent772f0945a93f9a0f28190c94e500c7bdfc1398af (diff)
downloadbusybox-w32-3ceeaf44aad812918733b40832e316fc4b17e0ae.tar.gz
busybox-w32-3ceeaf44aad812918733b40832e316fc4b17e0ae.tar.bz2
busybox-w32-3ceeaf44aad812918733b40832e316fc4b17e0ae.zip
- patch from Robert P. J. Day to use filter instead of findstring.
git-svn-id: svn://busybox.net/trunk/busybox@15082 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in
index 91ff771cf..7d1686d90 100644
--- a/libbb/Makefile.in
+++ b/libbb/Makefile.in
@@ -116,10 +116,10 @@ LIBBB_AR:=$(LIBBB_DIR)/libbb.a
116libraries-y+=$(LIBBB_AR) 116libraries-y+=$(LIBBB_AR)
117 117
118needcrypt-y:= 118needcrypt-y:=
119ifneq ($(findstring $(srcdir)/pw_encrypt.c,$(LIBBB-y)),) 119ifneq ($(filter $(srcdir)/pw_encrypt.c,$(LIBBB-y)),)
120needcrypt-y:=y 120needcrypt-y:=y
121else 121else
122ifneq ($(findstring $(srcdir)/correct_password.c,$(LIBBB-y)),) 122ifneq ($(filter $(srcdir)/correct_password.c,$(LIBBB-y)),)
123needcrypt-y:=y 123needcrypt-y:=y
124endif 124endif
125endif 125endif