From 3fb2d551715bce5c8374744952eb6d995747b072 Mon Sep 17 00:00:00 2001 From: Vasilito Date: Fri, 17 Apr 2026 21:49:39 +0100 Subject: [PATCH] Fix WIP grub symlink path depth (3 levels, not 4) The symlink from recipes/wip/services/grub was using ../../../../local/ which goes above the repo root. Fixed to ../../../local/ which correctly resolves from recipes/wip/services/ to local/recipes/core/grub. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- local/scripts/apply-patches.sh | 2 +- recipes/wip/services/grub | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/local/scripts/apply-patches.sh b/local/scripts/apply-patches.sh index b9bfef53..ac7a35f3 100755 --- a/local/scripts/apply-patches.sh +++ b/local/scripts/apply-patches.sh @@ -137,7 +137,7 @@ if [ -d "recipes/wip/services/grub" ] && [ ! -L "recipes/wip/services/grub" ]; t rm -rf "recipes/wip/services/grub" fi if [ ! -e "recipes/wip/services/grub" ]; then - symlink "../../../../local/recipes/core/grub" "recipes/wip/services/grub" + symlink "../../../local/recipes/core/grub" "recipes/wip/services/grub" fi # Wayland additions diff --git a/recipes/wip/services/grub b/recipes/wip/services/grub index ec3b2ed8..b0a182e9 120000 --- a/recipes/wip/services/grub +++ b/recipes/wip/services/grub @@ -1 +1 @@ -../../../../local/recipes/core/grub \ No newline at end of file +../../../local/recipes/core/grub \ No newline at end of file