diff options
author | Raul E Rangel <rrangel@chromium.org> | 2023-03-21 13:20:36 -0600 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-03-21 16:30:12 -0400 |
commit | ff99b5fb1be5401fa0d01f91a5e40c51b74b28a1 (patch) | |
tree | 60b0046f74278071607e193b94a80653df683530 /x11-misc/compose-tables | |
parent | sys-cluster/rdma-core: add 45.0 (diff) | |
download | gentoo-ff99b5fb1be5401fa0d01f91a5e40c51b74b28a1.tar.gz gentoo-ff99b5fb1be5401fa0d01f91a5e40c51b74b28a1.tar.bz2 gentoo-ff99b5fb1be5401fa0d01f91a5e40c51b74b28a1.zip |
x11-misc/compose-tables: Pass keysymdefdir
We don't want to look at the host's keysymdef.h, but the target board's
version.
--with-keysymdefdir=DIR The location of keysymdef.h (defaults to xproto
include dir)
Without this change we get the following:
checking keysym definitions... /usr/include/X11/keysymdef.h
/usr/include/X11/XF86keysym.h /usr/include/X11/Sunkeysym.h
/usr/include/X11/DECkeysym.h /usr/include/X11/HPkeysym.h
With this change:
checking keysym definitions...
/build/arm64-generic/usr/include/X11/keysymdef.h
/build/arm64-generic/usr/include/X11/XF86keysym.h
/build/arm64-generic/usr/include/X11/Sunkeysym.h
/build/arm64-generic/usr/include/X11/DECkeysym.h
/build/arm64-generic/usr/include/X11/HPkeysym.h
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-misc/compose-tables')
-rw-r--r-- | x11-misc/compose-tables/compose-tables-1.8.4-r1.ebuild (renamed from x11-misc/compose-tables/compose-tables-1.8.4.ebuild) | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/x11-misc/compose-tables/compose-tables-1.8.4.ebuild b/x11-misc/compose-tables/compose-tables-1.8.4-r1.ebuild index f4cb0d243aff..e2b4da6df860 100644 --- a/x11-misc/compose-tables/compose-tables-1.8.4.ebuild +++ b/x11-misc/compose-tables/compose-tables-1.8.4-r1.ebuild @@ -27,6 +27,7 @@ XORG_CONFIGURE_OPTIONS=( --without-fop --disable-specs --disable-xkb + --with-keysymdefdir="${ESYSROOT}/usr/include/X11" ) src_compile() { |