mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
perl: native modules will not trigger build perl for target.
Currently building perl-native modules triggers build perl for target due to PACKAGES_DYNAMIC regex. This commit will cause, that perl native modules will trigger perl-native build. (From OE-Core rev: 7dd9772eca6df52db09b65537fdf689f1aa3fd8f) Signed-off-by: Krzysztof Taborski <taborskikrzysztof@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
c6e502bc61
commit
fb08ae8f48
@@ -135,3 +135,5 @@ EOF
|
||||
|
||||
# Fix the path in sstate
|
||||
SSTATE_SCAN_FILES += "*.pm *.pod *.h *.pl *.sh"
|
||||
PACKAGES_DYNAMIC_class-native += "^perl-module-.*native$"
|
||||
|
||||
|
||||
@@ -340,7 +340,7 @@ python split_perl_packages () {
|
||||
d.setVar(d.expand("RRECOMMENDS_${PN}-modules"), ' '.join(packages))
|
||||
}
|
||||
|
||||
PACKAGES_DYNAMIC += "^perl-module-.*"
|
||||
PACKAGES_DYNAMIC += "^perl-module-.*(?<!\-native)$"
|
||||
PACKAGES_DYNAMIC_class-nativesdk += "^nativesdk-perl-module-.*"
|
||||
|
||||
RPROVIDES_perl-lib = "perl-lib"
|
||||
|
||||
Reference in New Issue
Block a user