diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-02-05 23:29:56 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-02-05 23:31:07 -0800 |
commit | 31e9791350a34e25d1ece43856210da3c1f6662c (patch) | |
tree | 6b5be4b0769cc725efe6e753dab0bd5266540e49 /meta-oe/recipes-devtools/geany | |
parent | 1ef86daeb53d37e28f9eba48ae8fdc377e7faacc (diff) | |
download | meta-openembedded-31e9791350a34e25d1ece43856210da3c1f6662c.tar.gz |
geany: Fix build with autotools 2.70+
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/geany')
-rw-r--r-- | meta-oe/recipes-devtools/geany/geany/0001-configure-Upgrade-to-a-modern-Gettext.patch | 22 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/geany/geany_1.37.1.bb | 9 |
2 files changed, 25 insertions, 6 deletions
diff --git a/meta-oe/recipes-devtools/geany/geany/0001-configure-Upgrade-to-a-modern-Gettext.patch b/meta-oe/recipes-devtools/geany/geany/0001-configure-Upgrade-to-a-modern-Gettext.patch new file mode 100644 index 000000000..b96684719 --- /dev/null +++ b/meta-oe/recipes-devtools/geany/geany/0001-configure-Upgrade-to-a-modern-Gettext.patch | |||
@@ -0,0 +1,22 @@ | |||
1 | From 51e145b43e66134aa4b33c9af0319331ec8a5bce Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 5 Feb 2021 23:15:45 -0800 | ||
4 | Subject: [PATCH] configure: Use AC_PROG_INTLTOOL | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
8 | --- | ||
9 | configure.ac | 2 ++ | ||
10 | 1 file changed, 2 insertions(+) | ||
11 | |||
12 | --- a/configure.ac | ||
13 | +++ b/configure.ac | ||
14 | @@ -8,7 +8,7 @@ AC_CONFIG_AUX_DIR([build-aux]) | ||
15 | AC_CONFIG_MACRO_DIR([m4]) | ||
16 | AM_INIT_AUTOMAKE([1.11 -Wall parallel-tests subdir-objects]) | ||
17 | AC_CONFIG_HEADERS([config.h]) | ||
18 | - | ||
19 | +AC_PROG_INTLTOOL | ||
20 | m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) | ||
21 | |||
22 | GEANY_PREFIX | ||
diff --git a/meta-oe/recipes-devtools/geany/geany_1.37.1.bb b/meta-oe/recipes-devtools/geany/geany_1.37.1.bb index 330daaace..b361b1187 100644 --- a/meta-oe/recipes-devtools/geany/geany_1.37.1.bb +++ b/meta-oe/recipes-devtools/geany/geany_1.37.1.bb | |||
@@ -9,16 +9,13 @@ inherit features_check autotools pkgconfig perlnative gettext mime-xdg | |||
9 | 9 | ||
10 | REQUIRED_DISTRO_FEATURES = "x11" | 10 | REQUIRED_DISTRO_FEATURES = "x11" |
11 | 11 | ||
12 | SRC_URI = "https://download.geany.org/${BP}.tar.bz2" | 12 | SRC_URI = "https://download.geany.org/${BP}.tar.bz2 \ |
13 | file://0001-configure-Upgrade-to-a-modern-Gettext.patch \ | ||
14 | " | ||
13 | SRC_URI[sha256sum] = "18c5756444c1d8bcd737c8ecfd4ef0b3607c924fc02560d4e8b78f6121531a18" | 15 | SRC_URI[sha256sum] = "18c5756444c1d8bcd737c8ecfd4ef0b3607c924fc02560d4e8b78f6121531a18" |
14 | 16 | ||
15 | FILES_${PN} += "${datadir}/icons" | 17 | FILES_${PN} += "${datadir}/icons" |
16 | 18 | ||
17 | EXTRA_OECONF = "--disable-html-docs" | 19 | EXTRA_OECONF = "--disable-html-docs" |
18 | 20 | ||
19 | do_configure_prepend() { | ||
20 | cd ${S} | ||
21 | intltoolize --copy --force --automake | ||
22 | } | ||
23 | |||
24 | RRECOMMENDS_${PN} += "source-code-pro-fonts" | 21 | RRECOMMENDS_${PN} += "source-code-pro-fonts" |