From 355bbe721bae99cecce4a125754b61d768aa842e Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Thu, 17 Jul 2025 12:09:12 +0100 Subject: [PATCH] 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 --- libs/libxkbcommon/Makefile | 2 +- libs/xkeyboard-config/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/libxkbcommon/Makefile b/libs/libxkbcommon/Makefile index 170dcec..ab2fa8a 100644 --- a/libs/libxkbcommon/Makefile +++ b/libs/libxkbcommon/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libxkbcommon PKG_VERSION:=1.10.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_VERSION:=xkbcommon-$(PKG_VERSION) diff --git a/libs/xkeyboard-config/Makefile b/libs/xkeyboard-config/Makefile index 4fbe643..ff21028 100644 --- a/libs/xkeyboard-config/Makefile +++ b/libs/xkeyboard-config/Makefile @@ -46,7 +46,7 @@ define Package/xkeyboard-config/install $(INSTALL_DIR) $(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 - $(LN) ../../xkeyboard-config-2 $(1)/usr/share/X11/xkb + $(LN) ../xkeyboard-config-2 $(1)/usr/share/X11/xkb endef $(eval $(call BuildPackage,xkeyboard-config)) -- 2.30.2