mirror of
https://github.com/openharmony/third_party_libxkbcommon.git
synced 2026-07-19 20:03:37 -04:00
7 lines
273 B
Bash
7 lines
273 B
Bash
#!/bin/sh
|
|
# Run this to regenerate xkbcommon-keysyms.h from the X11 headers
|
|
# defining the keysyms and update the name <-> keysym mapping.
|
|
export LC_CTYPE=C
|
|
scripts/makeheader > xkbcommon/xkbcommon-keysyms.h
|
|
scripts/makekeys xkbcommon/xkbcommon-keysyms.h > src/ks_tables.h
|