diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-17 10:35:52 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-18 08:05:52 +0100 |
commit | d69bea22a1fc70b341872b86b6d8dba3e897bf0a (patch) | |
tree | 44fb67fed9a6ab482e7191f277ee509be4961aa4 /test | |
parent | 2b25a20e49a6fe9044717f4cd66594b8cbfb0183 (diff) |
tests: only test crypt if we have an impl
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 857ac8ad9..da5424e9f 100644 --- a/test/Makefile +++ b/test/Makefile @@ -35,7 +35,7 @@ endif ifneq ($(UCLIBC_HAS_LOCALE),y) DIRS := $(filter-out locale,$(DIRS)) endif -ifneq ($(UCLIBC_HAS_CRYPT),y) +ifneq ($(UCLIBC_HAS_CRYPT_IMPL),y) DIRS := $(filter-out crypt,$(DIRS)) endif ifeq ($(HAS_NO_THREADS),y) |