git: 056563a1580f - stable/13 - cross-build: fix after the recent sqlite3 import

From: Jessica Clarke <jrtc27_at_FreeBSD.org>
Date: Mon, 15 Dec 2025 18:19:09 UTC
The branch stable/13 has been updated by jrtc27:

URL: https://cgit.FreeBSD.org/src/commit/?id=056563a1580f9614d7eba4c7e2855787f4d50664

commit 056563a1580f9614d7eba4c7e2855787f4d50664
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2025-07-10 21:02:37 +0000
Commit:     Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2025-12-15 17:56:37 +0000

    cross-build: fix after the recent sqlite3 import
    
    Stop adding contrib/sqlite3 into the include path for usr.bin/kyua, take
    headers from the install sysroot env.  sqilte3 now has the VERSION file,
    which clashes with c++ include <version>.
    
    Submitted by:   jrtc27 (see https://reviews.freebsd.org/D51217)
    Tested by:      kib
    Fixes:  17f0f75308f2 ("sqlite3: Vendor import of sqlite3 3.50.2")
    
    (cherry picked from commit 09d28419c646650a77721e168ef43bc1bac96b67)
---
 usr.bin/kyua/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.bin/kyua/Makefile b/usr.bin/kyua/Makefile
index 953bb46589b1..50b683e51586 100644
--- a/usr.bin/kyua/Makefile
+++ b/usr.bin/kyua/Makefile
@@ -33,7 +33,7 @@ MAN=		kyua-about.1 \
 
 CFLAGS+=	-I${KYUA_SRCDIR} -I${.CURDIR}
 CFLAGS+=	-I${SRCTOP}/contrib/lutok/include
-CFLAGS+=	-I${SRCTOP}/contrib/sqlite3
+CFLAGS+=	-I${SYSROOT:U${DESTDIR}}/${INCLUDEDIR}/private/sqlite3
 # kyua uses auto_ptr
 CFLAGS+=	-Wno-deprecated-declarations
 CXXSTD=		c++11