lang/perlbase: Fix missing utf8 dependency on unicore
perlbase-utf8 depends on perlbase-unicore however that dependency was missing. This patch fixes that. Signed-off-by: Daniel Dickinson <lede@daniel.thecshore.com>
This commit is contained in:
parent
d5e32ca2ef
commit
1b1a2db490
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=perl
|
PKG_NAME:=perl
|
||||||
PKG_VERSION:=5.22.1
|
PKG_VERSION:=5.22.1
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE_URL:=ftp://ftp.cpan.org/pub/CPAN/src/5.0 \
|
PKG_SOURCE_URL:=ftp://ftp.cpan.org/pub/CPAN/src/5.0 \
|
||||||
http://www.cpan.org/src/5.0 \
|
http://www.cpan.org/src/5.0 \
|
||||||
|
|
|
@ -1518,7 +1518,7 @@ $(eval $(call BuildPackage,perlbase-user))
|
||||||
define Package/perlbase-utf8
|
define Package/perlbase-utf8
|
||||||
$(call Package/perlbase-template)
|
$(call Package/perlbase-template)
|
||||||
TITLE:=utf8 perl module
|
TITLE:=utf8 perl module
|
||||||
DEPENDS+=+perlbase-essential +perlbase-re
|
DEPENDS+=+perlbase-essential +perlbase-re +perlbase-unicore
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/perlbase-utf8/install
|
define Package/perlbase-utf8/install
|
||||||
|
|
Loading…
Reference in New Issue