diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-15 10:04:50 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-15 10:04:50 +0000 |
commit | 2f38f27b428527e6b90953ce6660b7fb9fb6b511 (patch) | |
tree | bedf1a6609c828d3413ff52932bc795aaf14f423 /libbb | |
parent | d9b6b844e5263f08af039a6d7b1f5388702a5d84 (diff) | |
download | busybox-w32-2f38f27b428527e6b90953ce6660b7fb9fb6b511.tar.gz busybox-w32-2f38f27b428527e6b90953ce6660b7fb9fb6b511.tar.bz2 busybox-w32-2f38f27b428527e6b90953ce6660b7fb9fb6b511.zip |
- patch from Robert P. J. Day to use filter instead of findstring.
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 |