diff --git a/Linux-Build-and-Install-Guide.md b/Linux-Build-and-Install-Guide.md index 5d8bb44..69ef4dd 100644 --- a/Linux-Build-and-Install-Guide.md +++ b/Linux-Build-and-Install-Guide.md @@ -239,14 +239,9 @@ Qbs is a build automation tool designed to conveniently manage the build process Due to Qbs' newety and rapid development, it's recommended to use the latest available version to ensure compatibility and access to the latest features and bug fixes. However, the version available through the package manager may be outdated. You can install a newer version of Qbs from The Qt Project build for Linux. ```bash -# Install Qbs 2.2.1 from The Qt Project +# Install Qbs 2.2.2 from The Qt Project mkdir -p /opt/qbs -wget -q -c "https://download.qt.io/official_releases/qbs/2.2.1/qbs-linux-x86_64-2.2.1.tar.gz" -O - | tar --strip-components=1 -xz -C /opt/qbs - -# Apply patch for Qbs 2.2.1 bug -curl https://gist.githubusercontent.com/dismine/43f3c51e05f3317c5d4fe16cd3c4b6d8/raw/2d297bcb53c2c022f740509923adf1eb1796afe2/qbs-pkg-config-probe.patch --output /opt/qbs/qbs-pkg-config-probe.patch --silent -patch -d /opt/qbs/ -p1 < /opt/qbs/qbs-pkg-config-probe.patch -rm /opt/qbs/qbs-pkg-config-probe.patch +wget -q -c "https://download.qt.io/official_releases/qbs/2.2.2/qbs-linux-x86_64-2.2.2.tar.gz" -O - | tar --strip-components=1 -xz -C /opt/qbs ``` ### Optional: Installing Linker Mold