From 2b28fad3d585b60807f8a5cad243c4fbf623bb14 Mon Sep 17 00:00:00 2001 From: Vishnu Santhosh Date: Fri, 17 Jul 2026 07:34:13 +0530 Subject: [PATCH] build: Fix pkg-config Cflags to match header install path Headers install to $(includedir)/qmi_framework (per pkginclude_HEADERS in Makefile.am), but Cflags only added -I${includedir}, one directory short. Consumers using pkg-config --cflags qmi-framework could not locate headers with a plain #include "qmi_idl_lib.h". Signed-off-by: Vishnu Santhosh --- qmi-framework.pc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmi-framework.pc.in b/qmi-framework.pc.in index ec439ed..53f7925 100644 --- a/qmi-framework.pc.in +++ b/qmi-framework.pc.in @@ -8,4 +8,4 @@ Description: QMI Framework - Qualcomm Messaging Interface Version: @VERSION@ Requires: Libs: -L${libdir} -lqcci -lqcsi -lqencdec -lqmi_common -Cflags: -I${includedir} +Cflags: -I${includedir}/qmi_framework