diff options
author | Randy MacLeod <Randy.MacLeod@windriver.com> | 2019-04-05 20:32:10 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-04-09 13:44:39 +0100 |
commit | 5897756f71dea2406bcfc2e1e659f00dc17bbf00 (patch) | |
tree | c9e66a8763e3a899d0822936fb329fe5a51a76d3 /meta/recipes-devtools/autoconf | |
parent | bf7bd734d017321bcbcbb946b4e28946ee532837 (diff) | |
download | poky-5897756f71dea2406bcfc2e1e659f00dc17bbf00.tar.gz |
autoconf: update runtime perl module dependencies
Running:
# autoreconf -if
on target for prelink-cross was failing due to missing perl modules:
Can't locate File/Spec.pm in @INC ...
Add the required perl modules and duplicate them for the SDK.
(From OE-Core rev: 52657215bcffc022821395950cf3236250370223)
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/autoconf')
-rw-r--r-- | meta/recipes-devtools/autoconf/autoconf.inc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/recipes-devtools/autoconf/autoconf.inc b/meta/recipes-devtools/autoconf/autoconf.inc index b82af5a5fa..2c87bf8296 100644 --- a/meta/recipes-devtools/autoconf/autoconf.inc +++ b/meta/recipes-devtools/autoconf/autoconf.inc | |||
@@ -22,10 +22,14 @@ RDEPENDS_${PN} = "m4 gnu-config \ | |||
22 | perl-module-file-find \ | 22 | perl-module-file-find \ |
23 | perl-module-file-glob \ | 23 | perl-module-file-glob \ |
24 | perl-module-file-path \ | 24 | perl-module-file-path \ |
25 | perl-module-file-spec \ | ||
26 | perl-module-file-spec-unix \ | ||
25 | perl-module-file-stat \ | 27 | perl-module-file-stat \ |
26 | perl-module-getopt-long \ | 28 | perl-module-getopt-long \ |
27 | perl-module-io-file \ | 29 | perl-module-io-file \ |
30 | perl-module-overloading \ | ||
28 | perl-module-posix \ | 31 | perl-module-posix \ |
32 | perl-module-symbol \ | ||
29 | perl-module-thread-queue \ | 33 | perl-module-thread-queue \ |
30 | perl-module-threads \ | 34 | perl-module-threads \ |
31 | " | 35 | " |
@@ -46,14 +50,20 @@ RDEPENDS_${PN}_class-nativesdk = "\ | |||
46 | nativesdk-perl-module-file-find \ | 50 | nativesdk-perl-module-file-find \ |
47 | nativesdk-perl-module-file-glob \ | 51 | nativesdk-perl-module-file-glob \ |
48 | nativesdk-perl-module-file-path \ | 52 | nativesdk-perl-module-file-path \ |
53 | nativesdk-perl-module-file-spec \ | ||
54 | nativesdk-perl-module-file-spec-unix \ | ||
49 | nativesdk-perl-module-file-stat \ | 55 | nativesdk-perl-module-file-stat \ |
50 | nativesdk-perl-module-getopt-long \ | 56 | nativesdk-perl-module-getopt-long \ |
51 | nativesdk-perl-module-io-file \ | 57 | nativesdk-perl-module-io-file \ |
58 | nativesdk-perl-module-overloading \ | ||
52 | nativesdk-perl-module-posix \ | 59 | nativesdk-perl-module-posix \ |
60 | nativesdk-perl-module-symbol \ | ||
53 | nativesdk-perl-module-thread-queue \ | 61 | nativesdk-perl-module-thread-queue \ |
54 | nativesdk-perl-module-threads \ | 62 | nativesdk-perl-module-threads \ |
55 | " | 63 | " |
56 | 64 | ||
65 | |||
66 | |||
57 | SRC_URI = "${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.gz \ | 67 | SRC_URI = "${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.gz \ |
58 | file://program_prefix.patch" | 68 | file://program_prefix.patch" |
59 | 69 | ||