From: Fabrice Fontaine Date: Tue, 5 Jun 2018 18:13:47 +0000 (+0200) Subject: dependencies.sh: add perl autodie for whois X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc5553d2ce1d333cbecac563d2c55525aa8e14ef;p=buildroot.git dependencies.sh: add perl autodie for whois Add dependency on perl autodie if whois package is selected Fixes: - http://autobuild.buildroot.net/results/4d2ca14580cbc73f94e86ee834fac6d2541298ec Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh index f98678973b..e570a9ee1a 100755 --- a/support/dependencies/dependencies.sh +++ b/support/dependencies/dependencies.sh @@ -256,6 +256,10 @@ if grep -q ^BR2_PACKAGE_MPV=y $BR2_CONFIG ; then required_perl_modules="$required_perl_modules Math::BigRat" fi +if grep -q ^BR2_PACKAGE_WHOIS=y $BR2_CONFIG ; then + required_perl_modules="$required_perl_modules autodie" +fi + # This variable will keep the modules that are missing in your system. missing_perl_modules=""