summaryrefslogtreecommitdiffstats
path: root/support/dependencies
diff options
context:
space:
mode:
authorFabrice Fontaine <fontaine.fabrice@gmail.com>2018-06-05 20:13:47 +0200
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-06-05 22:20:18 +0200
commitdc5553d2ce1d333cbecac563d2c55525aa8e14ef (patch)
treecb2282c87da143e13a9960c27b02011ca90965f9 /support/dependencies
parent6e179bda00d51dbe07789cbd6297f57a2cc89171 (diff)
downloadbuildroot-dc5553d2ce1d333cbecac563d2c55525aa8e14ef.tar.gz
buildroot-dc5553d2ce1d333cbecac563d2c55525aa8e14ef.zip
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 <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'support/dependencies')
-rwxr-xr-xsupport/dependencies/dependencies.sh4
1 files changed, 4 insertions, 0 deletions
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=""
OpenPOWER on IntegriCloud