diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-03-01 13:20:10 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-03-01 13:25:24 -0800 |
commit | fd067de110956fd8b21e334cc1b49eac4c5c8f2b (patch) | |
tree | de769c4685256736f03641076a53ebcde42ee21f | |
parent | cd57f730d6ea8b1c8dae21980b1482ab2dce0f76 (diff) | |
download | meta-openembedded-fd067de110956fd8b21e334cc1b49eac4c5c8f2b.tar.gz |
libmypaint: Add m4 dir to autoconf macro search paths
autotools bblass do not search for the .m4 files in srctree anymore [1]
[1] https://git.yoctoproject.org/poky/commit/?id=a4b1fa2b22794d59fee716afe6e269dae7f87ace
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-gnome/recipes-gimp/mypaint/libmypaint_git.bb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta-gnome/recipes-gimp/mypaint/libmypaint_git.bb b/meta-gnome/recipes-gimp/mypaint/libmypaint_git.bb index d509aa3dd0..b0f9b82e42 100644 --- a/meta-gnome/recipes-gimp/mypaint/libmypaint_git.bb +++ b/meta-gnome/recipes-gimp/mypaint/libmypaint_git.bb | |||
@@ -16,11 +16,14 @@ SRC_URI = "git://github.com/mypaint/libmypaint.git;protocol=https;branch=libmypa | |||
16 | file://0001-make-build-compatible-w.-autoconf-2.7.patch \ | 16 | file://0001-make-build-compatible-w.-autoconf-2.7.patch \ |
17 | " | 17 | " |
18 | SRCREV = "2768251dacce3939136c839aeca413f4aa4241d0" | 18 | SRCREV = "2768251dacce3939136c839aeca413f4aa4241d0" |
19 | |||
19 | PV = "1.6.1" | 20 | PV = "1.6.1" |
21 | |||
20 | S = "${WORKDIR}/git" | 22 | S = "${WORKDIR}/git" |
21 | 23 | ||
24 | EXTRA_AUTORECONF += "-I m4" | ||
25 | |||
22 | do_configure:append() { | 26 | do_configure:append() { |
23 | # autogen uses python2 so generate headers ourselves | 27 | # autogen uses python2 so generate headers ourselves |
24 | cd ${S} | 28 | (cd ${S} && python3 generate.py mypaint-brush-settings-gen.h brushsettings-gen.h) |
25 | python3 generate.py mypaint-brush-settings-gen.h brushsettings-gen.h | ||
26 | } | 29 | } |