diff options
author | Francois Perrad <fperrad@gmail.com> | 2012-10-19 03:13:48 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-03 11:41:29 +0100 |
commit | df9a5973e9ff5c659e0901ef4b1e07f820ff149a (patch) | |
tree | 215010ebc52a69809071a2636de68d7365f21a93 /package/perl/perl.mk | |
parent | 4bb3d3bd1c38ecae81a403e1b741ad3cf96db16e (diff) | |
download | buildroot-novena-df9a5973e9ff5c659e0901ef4b1e07f820ff149a.tar.gz buildroot-novena-df9a5973e9ff5c659e0901ef4b1e07f820ff149a.zip |
perl: add DB_File
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/perl/perl.mk')
-rw-r--r-- | package/perl/perl.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/perl/perl.mk b/package/perl/perl.mk index 7ac1aed87..186158bf2 100644 --- a/package/perl/perl.mk +++ b/package/perl/perl.mk @@ -11,7 +11,11 @@ PERL_SOURCE = perl-$(PERL_VERSION).tar.bz2 PERL_LICENSE = Artistic PERL_LICENSE_FILES = Artistic PERL_INSTALL_STAGING = YES + PERL_DEPENDENCIES = host-qemu +ifeq ($(BR2_PACKAGE_BERKELEYDB),y) + PERL_DEPENDENCIES += berkeleydb +endif PERL_CONF_OPT = -des \ -Dusecrosscompile \ |