mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 09:29:40 +01:00
Depending on nativesdk- varients in a nativesdk build isn't correct, so just collapse the DEPENDS down and let bitbake do the right thing (which is leaving them as -native). (From OE-Core rev: 4864167ad4ed4c57e49f2aa5e7c58383bddb052b) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
83 lines
2.6 KiB
PHP
83 lines
2.6 KiB
PHP
SUMMARY = "A GNU tool that produce shell scripts to automatically configure software"
|
|
DESCRIPTION = "Autoconf is an extensible package of M4 macros that produce shell scripts to automatically \
|
|
configure software source code packages. Autoconf creates a configuration script for a package from a template \
|
|
file that lists the operating system features that the package can use, in the form of M4 macro calls."
|
|
LICENSE = "GPLv3"
|
|
HOMEPAGE = "http://www.gnu.org/software/autoconf/"
|
|
SECTION = "devel"
|
|
DEPENDS = "m4-native gnu-config-native"
|
|
|
|
RDEPENDS_${PN} = "m4 gnu-config \
|
|
perl \
|
|
perl-module-bytes \
|
|
perl-module-carp \
|
|
perl-module-constant \
|
|
perl-module-data-dumper \
|
|
perl-module-errno \
|
|
perl-module-exporter \
|
|
perl-module-file-basename \
|
|
perl-module-file-compare \
|
|
perl-module-file-copy \
|
|
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 \
|
|
"
|
|
RDEPENDS_${PN}_class-native = "m4-native gnu-config-native"
|
|
RDEPENDS_${PN}_class-nativesdk = "\
|
|
nativesdk-gnu-config \
|
|
nativesdk-m4 \
|
|
nativesdk-perl \
|
|
nativesdk-perl-module-bytes \
|
|
nativesdk-perl-module-carp \
|
|
nativesdk-perl-module-constant \
|
|
nativesdk-perl-module-data-dumper \
|
|
nativesdk-perl-module-errno \
|
|
nativesdk-perl-module-exporter \
|
|
nativesdk-perl-module-file-basename \
|
|
nativesdk-perl-module-file-compare \
|
|
nativesdk-perl-module-file-copy \
|
|
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 \
|
|
"
|
|
|
|
inherit autotools texinfo
|
|
|
|
PERL = "${USRBINPATH}/perl"
|
|
PERL_class-native = "/usr/bin/env perl"
|
|
PERL_class-nativesdk = "/usr/bin/env perl"
|
|
|
|
CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}'"
|
|
|
|
do_configure() {
|
|
# manually install a newer config.guess/.sub
|
|
install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}/build-aux
|
|
install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}/build-aux
|
|
|
|
oe_runconf
|
|
}
|
|
|
|
do_install_append() {
|
|
rm -rf ${D}${datadir}/emacs
|
|
}
|