diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-12-14 16:07:12 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-15 14:36:25 +0000 |
commit | 984eb9e5a7989d7207e3e284f440877610483edf (patch) | |
tree | 6ac907389a45296c8af887ba81b0098f4222b144 /meta/recipes-devtools/perl | |
parent | 228c43cecd7ff9f649658342dc11f54ff3ee8831 (diff) | |
download | poky-984eb9e5a7989d7207e3e284f440877610483edf.tar.gz |
perl: add .pl, pm, pod, sh files to SSTATE_SCANE_FILES
This fixes problems where hardcoded paths in the file were incorrect
during sstate reusage of the task output.
(From OE-Core rev: 1e4466fc1ce32e5903ce0ed3f0ac80e3e93e1e24)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl')
-rw-r--r-- | meta/recipes-devtools/perl/perl_5.14.2.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb index 5efe249c9f..0abefe4150 100644 --- a/meta/recipes-devtools/perl/perl_5.14.2.bb +++ b/meta/recipes-devtools/perl/perl_5.14.2.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ | |||
7 | # We need gnugrep (for -I) | 7 | # We need gnugrep (for -I) |
8 | DEPENDS = "virtual/db grep-native" | 8 | DEPENDS = "virtual/db grep-native" |
9 | DEPENDS += "gdbm zlib" | 9 | DEPENDS += "gdbm zlib" |
10 | PR = "r1" | 10 | PR = "r2" |
11 | 11 | ||
12 | # 5.10.1 has Module::Build built-in | 12 | # 5.10.1 has Module::Build built-in |
13 | PROVIDES += "libmodule-build-perl" | 13 | PROVIDES += "libmodule-build-perl" |
@@ -302,3 +302,6 @@ RPROVIDES_perl-lib = "perl-lib" | |||
302 | require perl-rdepends_${PV}.inc | 302 | require perl-rdepends_${PV}.inc |
303 | require perl-rprovides.inc | 303 | require perl-rprovides.inc |
304 | require perl-rprovides_${PV}.inc | 304 | require perl-rprovides_${PV}.inc |
305 | |||
306 | SSTATE_SCAN_FILES += "*.pm *.pod *.h *.pl *.sh" | ||
307 | |||