From f60c8cd406926000bb44f20449819837e38d91db Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 28 Dec 2025 19:10:01 +0000 Subject: [PATCH] Improve path consistency in deps documentation Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- deps/README.md | 4 ++-- deps/mesa-radv/README.md | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/deps/README.md b/deps/README.md index ad6fd26..072c569 100644 --- a/deps/README.md +++ b/deps/README.md @@ -81,10 +81,10 @@ cd qt-everywhere-src-6.5.3 # Configure for MetalOS (minimal, static linking) ./configure -static -no-dbus -no-ssl -no-cups -no-fontconfig \ - -prefix ../MetalOS/deps/qt6 + -prefix $PWD/../deps/qt6 ``` -**Note**: Adjust the `-prefix` path to match your MetalOS repository location. Using a relative path from the extracted QT source directory. +**Note**: Adjust the path as needed based on your directory structure. The example above assumes you extracted QT source alongside the MetalOS repository. **License**: LGPL v3 / GPL v2 / Commercial (see QT documentation) diff --git a/deps/mesa-radv/README.md b/deps/mesa-radv/README.md index 34e9a04..fc057cc 100644 --- a/deps/mesa-radv/README.md +++ b/deps/mesa-radv/README.md @@ -20,8 +20,9 @@ cd /tmp/mesa # Checkout stable version git checkout mesa-24.0.0 -# Copy RADV sources -cp -r src/amd/vulkan/* /path/to/MetalOS/deps/mesa-radv/ +# Copy RADV driver sources to deps +# Assuming you're in the mesa source directory and MetalOS repo is in parent +cp -r src/amd/vulkan/* ../MetalOS/deps/mesa-radv/ ``` ## Integration with MetalOS