mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 06:32:34 +02:00
Add automake-nativesdk and autoconf-nativesdk to meta-toolchain for
fixing the configure issue:
WARNING: unrecognized options: --with-libtool-sysroot
This will allow user to run 'autoreconf' under their projects and
process the libtool m4 macros correctly.
[YOCTO #1603]
(From OE-Core rev: d1aabea25aa7ac46a7693acb52ccfe465c63f9bf)
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
792 B
BlitzBasic
36 lines
792 B
BlitzBasic
#
|
|
# Copyright (C) 2007 OpenedHand Ltd
|
|
#
|
|
|
|
DESCRIPTION = "Host packages for the standalone SDK or external toolchain"
|
|
PR = "r11"
|
|
LICENSE = "MIT"
|
|
ALLOW_EMPTY = "1"
|
|
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
|
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
inherit nativesdk
|
|
|
|
PACKAGES = "${PN}"
|
|
|
|
RDEPENDS_${PN} = "\
|
|
pkgconfig-nativesdk \
|
|
qemu-nativesdk \
|
|
qemu-helper-nativesdk \
|
|
pseudo-nativesdk \
|
|
unfs-server-nativesdk \
|
|
opkg-nativesdk \
|
|
libtool-nativesdk \
|
|
autoconf-nativesdk \
|
|
automake-nativesdk \
|
|
"
|
|
|
|
RDEPENDS_${PN}_darwin8 = "\
|
|
odcctools-cross-canadian \
|
|
llvm-cross-canadian \
|
|
pkgconfig-nativesdk \
|
|
opkg-nativesdk \
|
|
libtool-nativesdk \
|
|
"
|