summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2025-03-20 10:12:12 +0100
committerBruce Ashfield <bruce.ashfield@gmail.com>2025-03-24 18:45:11 +0000
commit37ce8a486fa3be7ec75db97bf6b528d0b64126d8 (patch)
tree032c34b64a092b021a2713073ebc4530395f2b85
parentdffc059521fbd87d183cad3867d0afd515acfbfd (diff)
downloadmeta-virtualization-37ce8a486fa3be7ec75db97bf6b528d0b64126d8.tar.gz
oath: fix autotools usage
* add include for m4 directory to fix: http://errors.yoctoproject.org/Errors/Details/848019/ configure.ac:48: error: possibly undefined macro: AM_PATH_XML2 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-extended/oath/oath_2.6.2.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-extended/oath/oath_2.6.2.bb b/recipes-extended/oath/oath_2.6.2.bb
index 84d42dff..3d962869 100644
--- a/recipes-extended/oath/oath_2.6.2.bb
+++ b/recipes-extended/oath/oath_2.6.2.bb
@@ -14,6 +14,10 @@ SRC_URI[sha256sum] = "b03446fa4b549af5ebe4d35d7aba51163442d255660558cd861ebce536
14 14
15inherit autotools pkgconfig 15inherit autotools pkgconfig
16 16
17# http://errors.yoctoproject.org/Errors/Details/848019/
18# uses AM_PATH_XML2 from oath-toolkit-2.6.2/m4/libxml2.m4:AC_DEFUN([AM_PATH_XML2],[...
19EXTRA_AUTORECONF += "-I ${S}/m4"
20
17# Specify any options you want to pass to the configure script using EXTRA_OECONF: 21# Specify any options you want to pass to the configure script using EXTRA_OECONF:
18EXTRA_OECONF = "" 22EXTRA_OECONF = ""
19DEPENDS = "gtk-doc-native" 23DEPENDS = "gtk-doc-native"