f4c89374ea
Release notes: https://lists.gnu.org/archive/html/info-gnu/2020-08/msg00000.html Tested using utils/test-pkg with toolchain br-arm-full on the following reverse-dependencies: bash at dtc host-dtc. Also tested using a custom toolchain and configuration on: conntrack-tools iproute2 libnl libpcap libtasn1. Signed-off-by: Thomas Claveirole <thomas.claveirole@green-communications.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
515 B
Makefile
18 lines
515 B
Makefile
################################################################################
|
|
#
|
|
# bison
|
|
#
|
|
################################################################################
|
|
|
|
BISON_VERSION = 3.7.1
|
|
BISON_SOURCE = bison-$(BISON_VERSION).tar.xz
|
|
BISON_SITE = $(BR2_GNU_MIRROR)/bison
|
|
BISON_LICENSE = GPL-3.0+
|
|
BISON_LICENSE_FILES = COPYING
|
|
# parallel build issue in examples/c/reccalc/
|
|
BISON_MAKE = $(MAKE1)
|
|
HOST_BISON_DEPENDENCIES = host-m4
|
|
HOST_BISON_CONF_OPTS = --enable-relocatable
|
|
|
|
$(eval $(host-autotools-package))
|