diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2017-07-03 18:58:27 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-07-03 21:59:32 +0200 |
commit | a6b49a7e8cf09e2f01790d39f216d43fa3f3ea4c (patch) | |
tree | b8bca2a7b46b63ae839a989127e2c4dd4fa59f52 | |
parent | 4bd21d3e95f5de08858c957731c1715f11a6080d (diff) | |
download | buildroot-a6b49a7e8cf09e2f01790d39f216d43fa3f3ea4c.tar.gz buildroot-a6b49a7e8cf09e2f01790d39f216d43fa3f3ea4c.zip |
libpwquality: select cracklib
libpwquality adds cracklib to its _DEPENDENCIES, but forgot to select it in
Config.in, leading to build failures if cracklib isn't explicitly enabled:
Makefile:536: *** cracklib is in the dependency chain of libpwquality that
has added it to its _DEPENDENCIES variable without selecting it or depending
on it from Config.in. Stop.
No autobuilder references as this error happens before build-time.log is
written, causing the autobuilder to ignore the build result.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/libpwquality/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/libpwquality/Config.in b/package/libpwquality/Config.in index 4e855254a6..23e15157d1 100644 --- a/package/libpwquality/Config.in +++ b/package/libpwquality/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBPWQUALITY bool "libpwquality" + select BR2_PACKAGE_CRACKLIB help This is a library for password quality checks and generation of random passwords that pass the checks. This library uses |