24401221d2
cpe:2.3🅰️gnu:bison is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Agnu%3Abison Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
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))
|