From b54b2bba542197aaaac4cdec9c30778c4ba70171 Mon Sep 17 00:00:00 2001 From: RoadrunnerWMC Date: Tue, 14 Sep 2021 04:57:01 -0400 Subject: [PATCH] Linking to "../Data/Sys" *looks* like it should be right, but that actually needs to be relative to the symlink being created, not to the current working directory. Linux sure is intuitive. --- Building-for-Linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Building-for-Linux.md b/Building-for-Linux.md index 58193c0..a02652f 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -37,7 +37,7 @@ You can reinstall them after Dolphin builds successfully if you like. 1. `mkdir build && cd build` 2. `cmake .. -DLINUX_LOCAL_DEV=true` 3. `make -j$(nproc)` -4. `ln -s ../Data/Sys Binaries/` +4. `ln -s ../../Data/Sys Binaries/` ### Portable Build 1. `mkdir build && cd build`