diff options
author | Krzysztof Taborski <taborskikrzysztof@gmail.com> | 2018-05-08 18:46:58 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-11 07:49:38 +0100 |
commit | fb08ae8f48776c1d02af8a03e2086c8f526f8e20 (patch) | |
tree | 02bfda6149887be683ea5d9b2515be2a5caad85d | |
parent | c6e502bc615c1b9fa16ad8e6a3085948a143e12c (diff) | |
download | poky-fb08ae8f48776c1d02af8a03e2086c8f526f8e20.tar.gz |
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>
-rw-r--r-- | meta/recipes-devtools/perl/perl-native_5.24.1.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/perl/perl_5.24.1.bb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-devtools/perl/perl-native_5.24.1.bb b/meta/recipes-devtools/perl/perl-native_5.24.1.bb index a9ab17d16c..71f45890b0 100644 --- a/meta/recipes-devtools/perl/perl-native_5.24.1.bb +++ b/meta/recipes-devtools/perl/perl-native_5.24.1.bb | |||
@@ -135,3 +135,5 @@ EOF | |||
135 | 135 | ||
136 | # Fix the path in sstate | 136 | # Fix the path in sstate |
137 | SSTATE_SCAN_FILES += "*.pm *.pod *.h *.pl *.sh" | 137 | SSTATE_SCAN_FILES += "*.pm *.pod *.h *.pl *.sh" |
138 | PACKAGES_DYNAMIC_class-native += "^perl-module-.*native$" | ||
139 | |||
diff --git a/meta/recipes-devtools/perl/perl_5.24.1.bb b/meta/recipes-devtools/perl/perl_5.24.1.bb index 2574886784..1329a72240 100644 --- a/meta/recipes-devtools/perl/perl_5.24.1.bb +++ b/meta/recipes-devtools/perl/perl_5.24.1.bb | |||
@@ -340,7 +340,7 @@ python split_perl_packages () { | |||
340 | d.setVar(d.expand("RRECOMMENDS_${PN}-modules"), ' '.join(packages)) | 340 | d.setVar(d.expand("RRECOMMENDS_${PN}-modules"), ' '.join(packages)) |
341 | } | 341 | } |
342 | 342 | ||
343 | PACKAGES_DYNAMIC += "^perl-module-.*" | 343 | PACKAGES_DYNAMIC += "^perl-module-.*(?<!\-native)$" |
344 | PACKAGES_DYNAMIC_class-nativesdk += "^nativesdk-perl-module-.*" | 344 | PACKAGES_DYNAMIC_class-nativesdk += "^nativesdk-perl-module-.*" |
345 | 345 | ||
346 | RPROVIDES_perl-lib = "perl-lib" | 346 | RPROVIDES_perl-lib = "perl-lib" |