diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2025-12-07 13:06:41 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2025-12-07 13:06:41 +0000 |
| commit | c51876a107310984ba3a31b088caebcfd86a9844 (patch) | |
| tree | 9e6cd5b5846cbda44697f60212bc8344a6e22125 | |
| parent | 3f10e5985044001a68761995474f1100aca648e1 (diff) | |
libsysdecode: Use consistent include path
mkioctls should look at the same set of headers as mktables does.
MFC after: 1 week
Fixes: 139d114acc7b ("libsysdecode use MKTABLES_INCLUDEDIR")
Sponsored by: Klara, Inc.
Sponsored by: NetApp, Inc.
Reviewed by: sjg
Differential Revision: https://reviews.freebsd.org/D54106
| -rw-r--r-- | lib/libsysdecode/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libsysdecode/Makefile b/lib/libsysdecode/Makefile index 11f45355b8e2..60422d3fc9ef 100644 --- a/lib/libsysdecode/Makefile +++ b/lib/libsysdecode/Makefile @@ -144,7 +144,7 @@ ioctl.c.tmp: .PHONY .endif ioctl.c.tmp: mkioctls .META env CPP="${CPP}" MK_PF="${MK_PF}" \ - /bin/sh ${.CURDIR}/mkioctls ${SYSROOT:U${DESTDIR}}${INCLUDEDIR} > ${.TARGET} + /bin/sh ${.CURDIR}/mkioctls ${MKTABLES_INCLUDEDIR} > ${.TARGET} ioctl.c: ioctl.c.tmp if [ ! -e ${.TARGET} ] || ! cmp -s ${.TARGET} ${.TARGET}.tmp; then \ |
