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:34:56 +0000 |
commit | 1e4466fc1ce32e5903ce0ed3f0ac80e3e93e1e24 (patch) | |
tree | 1f2ba4ed6a153f0f852c01b0955a6cd74f2c86c1 | |
parent | 69dfde005c7018b99a0397f4233841d76e383b4c (diff) | |
download | openembedded-core-1e4466fc1ce32e5903ce0ed3f0ac80e3e93e1e24.tar.gz openembedded-core-1e4466fc1ce32e5903ce0ed3f0ac80e3e93e1e24.tar.bz2 openembedded-core-1e4466fc1ce32e5903ce0ed3f0ac80e3e93e1e24.zip |
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.
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-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 \ # We need gnugrep (for -I) DEPENDS = "virtual/db grep-native" DEPENDS += "gdbm zlib" -PR = "r1" +PR = "r2" # 5.10.1 has Module::Build built-in PROVIDES += "libmodule-build-perl" @@ -302,3 +302,6 @@ RPROVIDES_perl-lib = "perl-lib" require perl-rdepends_${PV}.inc require perl-rprovides.inc require perl-rprovides_${PV}.inc + +SSTATE_SCAN_FILES += "*.pm *.pod *.h *.pl *.sh" + |