summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/autoconf/autoconf_2.69.bb
diff options
context:
space:
mode:
authorSerhii Popovych <spopovyc@cisco.com>2017-03-31 11:46:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-04-01 23:28:20 +0100
commite44946bff10e04cc52c3871a65830e83ff4a2c41 (patch)
tree29b894573b6baeff6759ddb14000ab1bd998aefd /meta/recipes-devtools/autoconf/autoconf_2.69.bb
parent034702f52070c495415db83e18e77fbe6632e54e (diff)
downloadpoky-e44946bff10e04cc52c3871a65830e83ff4a2c41.tar.gz
autoconf: Adjust shebang lines to remove interpreter path hardcode
If build host perl (and other tools) is old and we use some kind of toolchain to provide recent perl/python/etc to the OE build we still locked to use build host perl due to hardcoded shebang lines in autoconf scripts. Behaviour was observed with Enterprise Linux 6 and devtoolset toolchain from SCL (Software Collections) used to provide recent version of perl (not provided with default buildtools-tarball). Pass /usr/bin/env perl in ac_cv_path_PERL configuration variables for class-native and class-nativesdk. Use patch to autoconf to replace -w option in shebang line with modern way to enable warnings on perl (i.e. "use warnings"). Also add nativesdk-m4 and nativesdk-gnu-config to RDEPENDS to bring runtime dependencies inline with other targets. Note that ac_cv_path_PERL must be valid perl interpreter path since configure will check perl version and Flock implementation. It is not possible currently to use nativeperl from native sysroot because autoconf does not DEPENDS on perl-native (and doing so fails due to circular dependencies). Only possible solution is to overwrite shebangs with nativeperl somewhere at do_install() and update RDEPENDS for class-native. Or add perl symlinks to nativeperl in sysroot. For now it seems good to use perl found by /usr/bin/env from autoconf-native. Cc: XE-Linux <xe-linux-external@cisco.com> (From OE-Core rev: 443d2d31732fa5700aa00ff020a0d79ab245c114) Signed-off-by: Serhii Popovych <spopovyc@cisco.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/autoconf/autoconf_2.69.bb')
-rw-r--r--meta/recipes-devtools/autoconf/autoconf_2.69.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/autoconf/autoconf_2.69.bb b/meta/recipes-devtools/autoconf/autoconf_2.69.bb
index fd01585441..8e67f4b829 100644
--- a/meta/recipes-devtools/autoconf/autoconf_2.69.bb
+++ b/meta/recipes-devtools/autoconf/autoconf_2.69.bb
@@ -15,6 +15,7 @@ SRC_URI += "file://check-automake-cross-warning.patch \
15 file://add_musl_config.patch \ 15 file://add_musl_config.patch \
16 file://performance.patch \ 16 file://performance.patch \
17 file://AC_HEADER_MAJOR-port-to-glibc-2.25.patch \ 17 file://AC_HEADER_MAJOR-port-to-glibc-2.25.patch \
18 file://autoconf-replace-w-option-in-shebangs-with-modern-use-warnings.patch \
18 " 19 "
19 20
20SRC_URI[md5sum] = "82d05e03b93e45f5a39b828dc9c6c29b" 21SRC_URI[md5sum] = "82d05e03b93e45f5a39b828dc9c6c29b"