summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/re2c/re2c
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2018-08-15 14:51:50 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-08-16 22:40:28 +0100
commitc8ac784b8fa34c5ef3366cc1248988a1dbc85039 (patch)
treee22d4be4cd60ab60b687871f3c4aba71bcdbfff7 /meta/recipes-support/re2c/re2c
parent470327eb1f5c6076b3ee5489350522783fc43868 (diff)
downloadpoky-c8ac784b8fa34c5ef3366cc1248988a1dbc85039.tar.gz
re2c: Update to 1.0.1
Drop upstreamed patch (From OE-Core rev: d3cfbee2c85c5fa5e131ed8b2be50cc088f5154f) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/re2c/re2c')
-rw-r--r--meta/recipes-support/re2c/re2c/mkdir.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-support/re2c/re2c/mkdir.patch b/meta/recipes-support/re2c/re2c/mkdir.patch
deleted file mode 100644
index d59f01b36c..0000000000
--- a/meta/recipes-support/re2c/re2c/mkdir.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1Upstream-Status: Submitted (https://github.com/skvadrik/re2c/pull/191)
2Signed-off-by: Ross Burton <ross.burton@intel.com>
3
4From bccc10c60523f88c8f81413151cdcd612eb16198 Mon Sep 17 00:00:00 2001
5From: Ross Burton <ross.burton@intel.com>
6Date: Mon, 31 Jul 2017 15:43:41 +0100
7Subject: [PATCH] Makefile.am: create target directory before writing into it
8
9In some situations src/parse/ may not exist before a file is copied into the
10directory. Ensure that this doesn't happen by creating the directory first.
11---
12 re2c/Makefile.am | 1 +
13 1 file changed, 1 insertion(+)
14
15diff --git a/re2c/Makefile.am b/re2c/Makefile.am
16index 3b3b2c5e..0707fc5a 100644
17--- a/Makefile.am
18+++ b/Makefile.am
19@@ -187,6 +187,7 @@ CLEANFILES = \
20 $(DOC)
21
22 $(AUTOGEN_PARSER): $(CUSTOM_PARSER)
23+ $(AM_V_at)$(MKDIR_P) $(dir $@)
24 $(AM_V_GEN) if test $(BISON) = "no"; \
25 then \
26 cp $(top_srcdir)/$(BOOTSTRAP_PARSER) $@ && \
27@@ -211,6 +212,7 @@ $(BOOTSTRAP_PARSER): $(CUSTOM_PARSER)
28 $(top_srcdir)/$(CUSTOM_PARSER);
29
30 .re.cc:
31+ $(AM_V_at)$(MKDIR_P) $(dir $@)
32 $(AM_V_GEN) if test -x $(RE2C); \
33 then \
34 $(top_builddir)/$(RE2C) $(RE2CFLAGS) -o $@ $< && \
35--
362.11.0