summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/byacc/byacc.inc
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2017-04-21 15:39:53 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-16 14:08:30 +0100
commit2568e18701fb20d7105eb6e4929f3aff4b9f9c06 (patch)
tree8fa596670d5ad64922bd809b235c72683833e3ee /meta/recipes-extended/byacc/byacc.inc
parent820778cb31ab7ce146c417a3303f4cad7bd50cd9 (diff)
downloadpoky-2568e18701fb20d7105eb6e4929f3aff4b9f9c06.tar.gz
byacc: remove the recipe
It was used only by rpm5 and will be moved to meta-oe (From OE-Core rev: 138f3e3f81d866e8272b01dd88c164b367adc4cd) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/byacc/byacc.inc')
-rw-r--r--meta/recipes-extended/byacc/byacc.inc22
1 files changed, 0 insertions, 22 deletions
diff --git a/meta/recipes-extended/byacc/byacc.inc b/meta/recipes-extended/byacc/byacc.inc
deleted file mode 100644
index adb07193d7..0000000000
--- a/meta/recipes-extended/byacc/byacc.inc
+++ /dev/null
@@ -1,22 +0,0 @@
1SUMMARY = "Berkeley LALR Yacc parser generator"
2DESCRIPTION = "A parser generator utility that reads a grammar specification from a file and generates an LR(1) \
3parser for it. The parsers consist of a set of LALR(1) parsing tables and a driver routine written in the C \
4programming language."
5SECTION = "devel"
6LICENSE = "PD"
7
8SRC_URI = "ftp://invisible-island.net/byacc/byacc-${PV}.tgz \
9 file://byacc-open.patch \
10 file://0001-byacc-do-not-reorder-CC-and-CFLAGS.patch"
11
12EXTRA_OECONF += "--program-transform-name='s,^,b,'"
13
14BBCLASSEXTEND = "native"
15
16inherit autotools
17
18do_configure() {
19 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}
20 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}
21 oe_runconf
22}