From 8f9151d4888999c56166e4f21f645bda1cc0663c Mon Sep 17 00:00:00 2001 From: Martchus Date: Mon, 27 Feb 2023 22:22:57 +0100 Subject: [PATCH] Remove obsolete config for symlinks from README --- README.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 25767b4..138dab2 100644 --- a/README.md +++ b/README.md @@ -391,17 +391,13 @@ When enabled, the following additional dependencies are required (only at build- For the latest version from Git clone the following repositories: ``` cd "$SOURCES" - git clone -c core.symlinks=true https://github.com/Martchus/cpp-utilities.git c++utilities - git clone -c core.symlinks=true https://github.com/Martchus/tagparser.git - git clone -c core.symlinks=true https://github.com/Martchus/qtutilities.git # only required for Qt GUI - git clone -c core.symlinks=true https://github.com/Martchus/reflective-rapidjson.git # only required for JSON export - git clone -c core.symlinks=true https://github.com/Martchus/tageditor.git - git clone -c core.symlinks=true https://github.com/Martchus/subdirs.git + git clone https://github.com/Martchus/cpp-utilities.git c++utilities + git clone https://github.com/Martchus/tagparser.git + git clone https://github.com/Martchus/qtutilities.git # only required for Qt GUI + git clone https://github.com/Martchus/reflective-rapidjson.git # only required for JSON export + git clone https://github.com/Martchus/tageditor.git + git clone https://github.com/Martchus/subdirs.git ``` - Note that `-c core.symlinks=true` is only required under Windows to handle symlinks correctly. - This requires a recent Git version and a filesystem which supports symlinks (NTFS works). - If you run into "not found" errors on symlink creation use `git reset --hard` within the repository to - fix this. 2. Configure the build ``` cd "$BUILD_DIR"