]> code.ossystems Code Review - openembedded-core.git/commitdiff
autoconf: update runtime perl module dependencies
authorRandy MacLeod <Randy.MacLeod@windriver.com>
Sat, 6 Apr 2019 00:32:10 +0000 (20:32 -0400)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 9 Apr 2019 12:44:32 +0000 (13:44 +0100)
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.

Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/autoconf/autoconf.inc

index b82af5a5fa889083cf972e0e0830efc3d30a48d8..2c87bf8296fc48e33e6c7ac255aa71bb073c84ad 100644 (file)
@@ -22,10 +22,14 @@ RDEPENDS_${PN} = "m4 gnu-config \
                  perl-module-file-find \
                  perl-module-file-glob \
                  perl-module-file-path \
+                 perl-module-file-spec \
+                 perl-module-file-spec-unix \
                  perl-module-file-stat \
                  perl-module-getopt-long \
                  perl-module-io-file \
+                 perl-module-overloading \
                  perl-module-posix \
+                 perl-module-symbol \
                  perl-module-thread-queue \
                  perl-module-threads \
                 "
@@ -46,14 +50,20 @@ RDEPENDS_${PN}_class-nativesdk = "\
                  nativesdk-perl-module-file-find \
                  nativesdk-perl-module-file-glob \
                  nativesdk-perl-module-file-path \
+                 nativesdk-perl-module-file-spec \
+                 nativesdk-perl-module-file-spec-unix \
                  nativesdk-perl-module-file-stat \
                  nativesdk-perl-module-getopt-long \
                  nativesdk-perl-module-io-file \
+                 nativesdk-perl-module-overloading \
                  nativesdk-perl-module-posix \
+                 nativesdk-perl-module-symbol \
                  nativesdk-perl-module-thread-queue \
                  nativesdk-perl-module-threads \
                   "
 
+
+
 SRC_URI = "${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.gz \
           file://program_prefix.patch"