buildroot/package/libpwquality/Config.in
Peter Korsgaard a6b49a7e8c 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>
2017-07-03 21:59:32 +02:00

21 lines
521 B
Plaintext

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
the cracklib and cracklib dictionaries to perform some of
the checks.
https://github.com/libpwquality/libpwquality
if BR2_PACKAGE_LIBPWQUALITY
config BR2_PACKAGE_LIBPWQUALITY_TOOLS
bool "install tools"
help
Install libpwquality command line tools generating/checking
passwords.
endif