diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-17 15:17:14 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-22 00:01:52 +0200 |
commit | 33f132ef09f5bc7d8b8e7ecbaf1b6fd1db2b6782 (patch) | |
tree | 6b32a1cac758275c634c111c4872c3649eccea3d | |
parent | 55ba655244ff10314b10077fb352b905e91b522b (diff) | |
download | meta-openembedded-33f132ef09f5bc7d8b8e7ecbaf1b6fd1db2b6782.tar.gz |
re2c: Fix for modern automake
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/re2c/re2c/configure.patch | 18 | ||||
-rw-r--r-- | meta-oe/recipes-support/re2c/re2c_0.13.5.bb | 3 |
2 files changed, 20 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/re2c/re2c/configure.patch b/meta-oe/recipes-support/re2c/re2c/configure.patch new file mode 100644 index 0000000000..8ca0969ad6 --- /dev/null +++ b/meta-oe/recipes-support/re2c/re2c/configure.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | Modernise configure to work with modern automake. | ||
2 | |||
3 | RP 2014/7/14 | ||
4 | |||
5 | Upstream-Status: Pending | ||
6 | |||
7 | Index: re2c-0.13.5/configure.in | ||
8 | =================================================================== | ||
9 | --- re2c-0.13.5.orig/configure.in 2008-05-25 14:42:34.000000000 +0000 | ||
10 | +++ re2c-0.13.5/configure.in 2014-07-17 14:10:40.595821292 +0000 | ||
11 | @@ -1,6 +1,6 @@ | ||
12 | AC_PREREQ([2.57]) | ||
13 | AC_INIT(re2c, 0.13.5, re2c-general@lists.sourceforge.net) | ||
14 | -AM_INIT_AUTOMAKE(re2c, $PACKAGE_VERSION) | ||
15 | +AM_INIT_AUTOMAKE([foreign]) | ||
16 | AC_CONFIG_SRCDIR(actions.cc) | ||
17 | AM_CONFIG_HEADER(config.h) | ||
18 | |||
diff --git a/meta-oe/recipes-support/re2c/re2c_0.13.5.bb b/meta-oe/recipes-support/re2c/re2c_0.13.5.bb index fff7a782a6..dcac940f81 100644 --- a/meta-oe/recipes-support/re2c/re2c_0.13.5.bb +++ b/meta-oe/recipes-support/re2c/re2c_0.13.5.bb | |||
@@ -5,7 +5,8 @@ SECTION = "devel" | |||
5 | LICENSE = "PD" | 5 | LICENSE = "PD" |
6 | LIC_FILES_CHKSUM = "file://README;beginline=180;md5=822830a2204aef353f2c489f62e02089" | 6 | LIC_FILES_CHKSUM = "file://README;beginline=180;md5=822830a2204aef353f2c489f62e02089" |
7 | 7 | ||
8 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz" | 8 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \ |
9 | file://configure.patch" | ||
9 | SRC_URI[md5sum] = "4a97d8f77ed6d2c76c8bd840a43f5633" | 10 | SRC_URI[md5sum] = "4a97d8f77ed6d2c76c8bd840a43f5633" |
10 | SRC_URI[sha256sum] = "f3a995139af475e80a30207d02728b1e0065b0caade7375e974cb1b14861668c" | 11 | SRC_URI[sha256sum] = "f3a995139af475e80a30207d02728b1e0065b0caade7375e974cb1b14861668c" |
11 | 12 | ||