mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-14 13:19:27 +00:00
* Rebase patches to Buildroot 2021.02-rc3 * Update Buildroot to 2021.02-rc3 * Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
20 lines
585 B
Makefile
20 lines
585 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
|
|
BISON_CPE_ID_VENDOR = gnu
|
|
# parallel build issue in examples/c/reccalc/
|
|
BISON_MAKE = $(MAKE1)
|
|
HOST_BISON_DEPENDENCIES = host-m4
|
|
HOST_BISON_CONF_OPTS = --enable-relocatable
|
|
HOST_BISON_CONF_ENV = ac_cv_libtextstyle=no
|
|
|
|
$(eval $(host-autotools-package))
|