mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
Generally distros keep perl at /usr/bin/perl Fedora 17 also has /bin/perl this causes autoconf-nativesdk build on such distros to put perl interpreter path in the perl scripts as /bin/perl But we set perl location for target as /usr/bin/perl This mismatch of perl path causes failure of rootfs image creation like this: | error: Failed dependencies: | /bin/perl is needed by autoconf-nativesdk-2.68-r6.x86_64.rpm NOTE: package meta-toolchain-gmae-1.0-r7: task do_populate_sdk: Failed The second sed command is for such a case: eval 'case $# in 0) exec /bin/perl -S "$0";; *) exec /bin/perl -S "$0" "$@";; esac' This line has two "/bin/perl" and we can't use a line number to tell sed which line it is since the line numbers in different files are defferent. [YOCTO #2304] (From OE-Core rev: 393908e53b243b16ab984da7f073be371e062946) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
945 B
BlitzBasic
28 lines
945 B
BlitzBasic
require autoconf.inc
|
|
|
|
PR = "r7"
|
|
|
|
PARALLEL_MAKE = ""
|
|
|
|
LICENSE = "GPLv2 & GPLv3"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
|
|
file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504"
|
|
SRC_URI += "file://autoreconf-include.patch \
|
|
file://autoreconf-exclude.patch \
|
|
file://autoreconf-foreign.patch \
|
|
file://autoreconf-gnuconfigize.patch \
|
|
file://autoheader-nonfatal-warnings.patch \
|
|
${@['file://path_prog_fixes.patch', ''][bb.data.inherits_class('native', d) or bb.data.inherits_class('nativesdk', d)]} \
|
|
file://config_site.patch \
|
|
file://remove-usr-local-lib-from-m4.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "864d785215aa60d627c91fcb21b05b07"
|
|
SRC_URI[sha256sum] = "c491fb273fd6d4ca925e26ceed3d177920233c76d542b150ff35e571454332c8"
|
|
|
|
SRC_URI_append_virtclass-native = " file://fix_path_xtra.patch"
|
|
|
|
EXTRA_OECONF += "ac_cv_path_M4=m4"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|