From 37ce8a486fa3be7ec75db97bf6b528d0b64126d8 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Thu, 20 Mar 2025 10:12:12 +0100 Subject: [PATCH] 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 Signed-off-by: Bruce Ashfield --- recipes-extended/oath/oath_2.6.2.bb | 4 ++++ 1 file changed, 4 insertions(+) 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 inherit autotools pkgconfig +# http://errors.yoctoproject.org/Errors/Details/848019/ +# uses AM_PATH_XML2 from oath-toolkit-2.6.2/m4/libxml2.m4:AC_DEFUN([AM_PATH_XML2],[... +EXTRA_AUTORECONF += "-I ${S}/m4" + # Specify any options you want to pass to the configure script using EXTRA_OECONF: EXTRA_OECONF = "" DEPENDS = "gtk-doc-native"