mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 09:32:17 +02:00
Using "1" with getVar is bad coding style and "True" is preferred. This patch is a sed over the meta directory of the form: sed \ -e 's:\(\.getVar([^,()]*, \)1 *):\1True):g' \ -e 's:\(\.getVarFlag([^,()]*, [^,()]*, \)1 *):\1True):g' \ -i `grep -ril getVar *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
524 B
PHP
15 lines
524 B
PHP
SUMMARY = "A GNU tool for automatically generating Makefiles."
|
|
DESCRIPTION = "Automake is a tool for automatically generating `Makefile.in' files compliant with the GNU Coding \
|
|
Standards. Automake requires the use of Autoconf."
|
|
LICENSE = "GPLv2"
|
|
HOMEPAGE = "http://www.gnu.org/software/automake/"
|
|
SECTION = "devel"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.bz2 "
|
|
|
|
inherit autotools
|
|
|
|
export AUTOMAKE = "${@bb.which('automake', d.getVar('PATH', True))}"
|
|
|
|
FILES_${PN} += "${datadir}/automake* ${datadir}/aclocal*"
|