We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec18275 commit 1fb758aCopy full SHA for 1fb758a
scripts/xkeyboard-config.py
@@ -4,5 +4,7 @@ class XKeyboardConfigBuilder(MesonBuilder):
4
def pre_package(self):
5
# Remove X11 to avoid unpack symlink failure on Windows (f5h).
6
ensure('rm', ['-rf', f'{self.dest_dir}/usr/share/X11'])
7
+ # Remove xkeyboard-config-2.mo which is just a duplicate and not registered by fcitx5.
8
+ ensure('find', [self.dest_dir, '-name', 'xkeyboard-config-2.mo', '-delete'])
9
10
XKeyboardConfigBuilder('xkeyboard-config').exec()
0 commit comments