]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
freetype: pass missing include paths to autoreconf
authorRoss Burton <ross.burton@arm.com>
Tue, 25 Feb 2025 14:26:36 +0000 (14:26 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 27 Feb 2025 10:47:09 +0000 (10:47 +0000)
Now that autotools isn't searching for every m4 file the configure fails.
This is because freetype only uses autoconf and has a manual autogen.sh
script that passes -I. itself.

As we don't call that script, pass -I . to autoreconf ourselves.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-graphics/freetype/freetype_2.13.3.bb

index 30f50cc289b19abb6ffa294a29bc60c774b76c3c..100a7d95b69337396baf10aac1ea8e0f26fa30e3 100644 (file)
@@ -23,7 +23,7 @@ inherit autotools pkgconfig multilib_header
 # Adapt autotools to work with the minimal autoconf usage in freetype
 AUTOTOOLS_SCRIPT_PATH = "${S}/builds/unix"
 CONFIGURE_SCRIPT = "${S}/configure"
-EXTRA_AUTORECONF += "--exclude=autoheader --exclude=automake"
+EXTRA_AUTORECONF += "--exclude=autoheader --exclude=automake -I ."
 
 PACKAGECONFIG ??= "zlib pixmap"