diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-11-17 16:34:58 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-21 11:05:01 +0000 |
commit | 0d8869e82c9f1bb0c37b3f83845e01eeaa5af973 (patch) | |
tree | bfa69343ca27c3cf61e5c44e29b050ffb888c31e | |
parent | fbc3830ecf6737d132c1aad03a90458bdeeb0ef6 (diff) | |
download | poky-0d8869e82c9f1bb0c37b3f83845e01eeaa5af973.tar.gz |
gettext: address automake 1.16.5 failures
(From OE-Core rev: afc39549400adec43ec7da1cf0bc9537d084359d)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/gettext/gettext-0.21/0001-libtextstyle-fix-builds-with-automake-1.16.4-and-new.patch | 29 | ||||
-rw-r--r-- | meta/recipes-core/gettext/gettext_0.21.bb | 1 |
2 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-core/gettext/gettext-0.21/0001-libtextstyle-fix-builds-with-automake-1.16.4-and-new.patch b/meta/recipes-core/gettext/gettext-0.21/0001-libtextstyle-fix-builds-with-automake-1.16.4-and-new.patch new file mode 100644 index 0000000000..727d1db552 --- /dev/null +++ b/meta/recipes-core/gettext/gettext-0.21/0001-libtextstyle-fix-builds-with-automake-1.16.4-and-new.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | From 2f127ebe425c97b0641fe1bc73247e91e18c2be0 Mon Sep 17 00:00:00 2001 | ||
2 | From: Alexander Kanavin <alex@linutronix.de> | ||
3 | Date: Thu, 11 Nov 2021 22:06:16 +0100 | ||
4 | Subject: [PATCH] libtextstyle: fix builds with automake 1.16.4 and newer | ||
5 | |||
6 | Upstream-Status: Submitted [http://savannah.gnu.org/bugs/?59929] | ||
7 | Signed-off-by: Alexander Kanavin <alex@linutronix.de> | ||
8 | --- | ||
9 | libtextstyle/configure.ac | 5 ++--- | ||
10 | 1 file changed, 2 insertions(+), 3 deletions(-) | ||
11 | |||
12 | diff --git a/libtextstyle/configure.ac b/libtextstyle/configure.ac | ||
13 | index 63b4c2a..cab9025 100644 | ||
14 | --- a/libtextstyle/configure.ac | ||
15 | +++ b/libtextstyle/configure.ac | ||
16 | @@ -17,11 +17,10 @@ dnl along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
17 | dnl Process this file with autoconf to produce a configure script. | ||
18 | |||
19 | AC_PREREQ([2.63]) | ||
20 | -AC_INIT | ||
21 | +AC_INIT([libtextstyle], | ||
22 | + [0.20.1]) | ||
23 | AC_CONFIG_SRCDIR([version.sh]) | ||
24 | AC_CONFIG_AUX_DIR([build-aux]) | ||
25 | -. $srcdir/version.sh | ||
26 | -gl_INIT_PACKAGE([libtextstyle], [$VERSION_NUMBER]) | ||
27 | AM_INIT_AUTOMAKE([1.13 silent-rules]) | ||
28 | AM_CONFIG_HEADER([config.h]) | ||
29 | |||
diff --git a/meta/recipes-core/gettext/gettext_0.21.bb b/meta/recipes-core/gettext/gettext_0.21.bb index 5ada709937..a0f3402904 100644 --- a/meta/recipes-core/gettext/gettext_0.21.bb +++ b/meta/recipes-core/gettext/gettext_0.21.bb | |||
@@ -22,6 +22,7 @@ SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \ | |||
22 | file://0001-init-env.in-do-not-add-C-CXX-parameters.patch \ | 22 | file://0001-init-env.in-do-not-add-C-CXX-parameters.patch \ |
23 | file://mingw.patch \ | 23 | file://mingw.patch \ |
24 | file://0001-msgmerge-29-Add-executable-file-mode-bits.patch \ | 24 | file://0001-msgmerge-29-Add-executable-file-mode-bits.patch \ |
25 | file://0001-libtextstyle-fix-builds-with-automake-1.16.4-and-new.patch \ | ||
25 | " | 26 | " |
26 | SRC_URI[sha256sum] = "c77d0da3102aec9c07f43671e60611ebff89a996ef159497ce8e59d075786b12" | 27 | SRC_URI[sha256sum] = "c77d0da3102aec9c07f43671e60611ebff89a996ef159497ce8e59d075786b12" |
27 | 28 | ||