Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions X/Xorg_xkeyboard_config/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,14 @@ ninja -j${nproc}
ninja install
"""

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = [AnyPlatform()]
# The files are identical for all platforms, and in principle we could
# use `AnyPlatform()` instead. However, starting with 2.47 the upstream
# install creates symlinks (`share/X11/xkb`,
# `share/pkgconfig/xkeyboard-config.pc`,
# `share/man/man7/xkeyboard-config.7`) which have to be replaced with
# copies on Windows, and for that to happen we need to build it for
# Windows specifically (and hence for all other platforms as well).
platforms = supported_platforms()

products = Product[
]
Expand Down