mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 09:32:11 +02:00
[YOCTO #1336] Corrected the wrong dependency on non-native for -native packages for the following recipes: - util-macros - intltool (From OE-Core rev: e33bd6024c5f4cdd5c16d51e9b5c75ec4e1f1fb8) Signed-off-by: Lianhao Lu <lianhao.lu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
526 B
PHP
18 lines
526 B
PHP
DESCRIPTION = "Utility scripts for internationalizing XML"
|
|
SECTION = "devel"
|
|
LICENSE = "GPL"
|
|
|
|
URLV="${@'.'.join(bb.data.getVar('PV',d,1).split('.')[0:2])}"
|
|
SRC_URI = "${GNOME_MIRROR}/intltool/${URLV}/intltool-${PV}.tar.bz2"
|
|
S = "${WORKDIR}/intltool-${PV}"
|
|
|
|
DEPENDS = "libxml-parser-perl-native"
|
|
#RDEPENDS_${PN} = "libxml-parser-perl"
|
|
RRECOMMENDS_${PN} = "perl-modules"
|
|
RRECOMMENDS_${PN}_virtclass-native = ""
|
|
|
|
inherit autotools pkgconfig perlnative
|
|
|
|
export PERL_virtclass-native = "/usr/bin/env perl"
|
|
BBCLASSEXTEND = "native"
|