libxkbcommon: fix broken symlink

/usr/share/X11/xkb should point to ../xkeyboard-config-2
Remove the stray extra '../' to fix the symlink.

Fixes: 7873464 ("libxkbcommon: update to 1.10.0")
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
Daniel Golle
2025-07-17 12:09:12 +01:00
parent 7289eed07b
commit 355bbe721b
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=libxkbcommon PKG_NAME:=libxkbcommon
PKG_VERSION:=1.10.0 PKG_VERSION:=1.10.0
PKG_RELEASE:=1 PKG_RELEASE:=2
PKG_SOURCE_PROTO:=git PKG_SOURCE_PROTO:=git
PKG_SOURCE_VERSION:=xkbcommon-$(PKG_VERSION) PKG_SOURCE_VERSION:=xkbcommon-$(PKG_VERSION)

View File

@@ -46,7 +46,7 @@ define Package/xkeyboard-config/install
$(INSTALL_DIR) $(1)/usr/share/xkeyboard-config-2 $(INSTALL_DIR) $(1)/usr/share/xkeyboard-config-2
$(CP) $(PKG_INSTALL_DIR)/usr/share/xkeyboard-config-2/* $(1)/usr/share/xkeyboard-config-2 $(CP) $(PKG_INSTALL_DIR)/usr/share/xkeyboard-config-2/* $(1)/usr/share/xkeyboard-config-2
$(INSTALL_DIR) $(1)/usr/share/X11 $(INSTALL_DIR) $(1)/usr/share/X11
$(LN) ../../xkeyboard-config-2 $(1)/usr/share/X11/xkb $(LN) ../xkeyboard-config-2 $(1)/usr/share/X11/xkb
endef endef
$(eval $(call BuildPackage,xkeyboard-config)) $(eval $(call BuildPackage,xkeyboard-config))