summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/flex/flex.inc
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2015-12-15 13:59:34 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-22 16:08:51 +0000
commit86c8b8b82e39ca4233ef0ae258dc0cb18734151c (patch)
treed47c506f3f0719e5818349f3fecfd5a34144ba2f /meta/recipes-devtools/flex/flex.inc
parentdad130b76493429b6dc1de436cb758cd1735f808 (diff)
downloadpoky-86c8b8b82e39ca4233ef0ae258dc0cb18734151c.tar.gz
flex: update to 2.6.0
Drop backported 0001-bison-test-fixes-Do-not-use-obsolete-bison-construct.patch Test cases have been completely rearranged upstream, so ptest support is fully rewritten. Merge split bb/inc as there's no other user of the .inc [RB] As automake insists adding BUILD_SOURCES as a dependency to the "all" target, remove tests/ from the build unless ptests are enabled. This means native builds don't need a bison dependency. If ptests are enabled, we build-depend on flex-native and bison-native for the test suite, and tell it to use the flex-native binary instead of attempting to run the cross flex it just built. [RB] Move in-tree files from files/ to flex/ for consistency. [RB] (From OE-Core rev: 4fe048b7b32eb3d20a43171b83e8ad2037192d34) 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-devtools/flex/flex.inc')
-rw-r--r--meta/recipes-devtools/flex/flex.inc45
1 files changed, 0 insertions, 45 deletions
diff --git a/meta/recipes-devtools/flex/flex.inc b/meta/recipes-devtools/flex/flex.inc
deleted file mode 100644
index fbe921bfbe..0000000000
--- a/meta/recipes-devtools/flex/flex.inc
+++ /dev/null
@@ -1,45 +0,0 @@
1SUMMARY = "Flex (The Fast Lexical Analyzer)"
2DESCRIPTION = "Flex is a fast lexical analyser generator. Flex is a tool for generating programs that recognize \
3lexical patterns in text."
4HOMEPAGE = "http://sourceforge.net/projects/flex/"
5
6SECTION = "devel"
7LICENSE = "BSD"
8DEPENDS += "${@'bison-native flex-native' if '${PTEST_ENABLED}' == '1' else ''}"
9
10SRC_URI = "${SOURCEFORGE_MIRROR}/flex/flex-${PV}.tar.bz2 \
11 file://0001-bison-test-fixes-Do-not-use-obsolete-bison-construct.patch \
12 file://run-ptest \
13"
14
15inherit autotools gettext texinfo ptest
16
17
18M4 = "${bindir}/m4"
19M4_class-native = "${STAGING_BINDIR_NATIVE}/m4"
20
21EXTRA_OECONF += "ac_cv_path_M4=${M4}"
22EXTRA_OEMAKE += "m4=${STAGING_BINDIR_NATIVE}/m4"
23
24do_install_append_class-native() {
25 create_wrapper ${D}/${bindir}/flex M4=${M4}
26}
27
28do_install_append_class-nativesdk() {
29 create_wrapper ${D}/${bindir}/flex M4=${M4}
30}
31
32RDEPENDS_${PN} += "m4"
33
34do_compile_ptest() {
35 for i in `find ${S}/tests/ -type d |grep -Ev "concatenated-options|reject|table-opts" | awk -F/ '{print $NF}'`; \
36 do oe_runmake -C ${S}/tests/$i -f ${B}/tests/$i/Makefile top_builddir=${B} FLEX=flex $i; \
37 done
38 oe_runmake -C ${S}/tests/test-reject -f ${B}/tests/test-reject/Makefile top_builddir=${B} FLEX=flex test-reject-nr test-reject-r test-reject-ser test-reject-ver
39}
40
41do_install_ptest() {
42 for i in `find ${S}/tests/ -type d | awk -F/ '{print $NF}'`; \
43 do cp -r ${S}/tests/$i ${D}${PTEST_PATH}; \
44 done
45}