diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-15 10:04:50 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-15 10:04:50 +0000 |
commit | 3ceeaf44aad812918733b40832e316fc4b17e0ae (patch) | |
tree | bedf1a6609c828d3413ff52932bc795aaf14f423 /libbb | |
parent | 772f0945a93f9a0f28190c94e500c7bdfc1398af (diff) | |
download | busybox-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.in | 4 |
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 | |||
116 | libraries-y+=$(LIBBB_AR) | 116 | libraries-y+=$(LIBBB_AR) |
117 | 117 | ||
118 | needcrypt-y:= | 118 | needcrypt-y:= |
119 | ifneq ($(findstring $(srcdir)/pw_encrypt.c,$(LIBBB-y)),) | 119 | ifneq ($(filter $(srcdir)/pw_encrypt.c,$(LIBBB-y)),) |
120 | needcrypt-y:=y | 120 | needcrypt-y:=y |
121 | else | 121 | else |
122 | ifneq ($(findstring $(srcdir)/correct_password.c,$(LIBBB-y)),) | 122 | ifneq ($(filter $(srcdir)/correct_password.c,$(LIBBB-y)),) |
123 | needcrypt-y:=y | 123 | needcrypt-y:=y |
124 | endif | 124 | endif |
125 | endif | 125 | endif |