aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/gettingstarted-linux.rst
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-06-10 07:35:21 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2022-06-10 20:19:15 +0200
commitfd6f5801117e6c3d215e9b53b8bf5a8e8506ae78 (patch)
treedd6554414ba075754fad8b820c04a16ee2235297 /sources/pyside6/doc/gettingstarted-linux.rst
parenta2005503162fd707d71027712f13f6b9454e78ad (diff)
Documentation: Fix mention of the clang environment variable
Use LLVM_INSTALL_DIR instead of deprecated CLANG_INSTALL_DIR. Pick-to: 6.3 6.2 5.15 Fixes: PYSIDE-1956 Change-Id: I69080670f28267eadd7def6b81599703c9e95fa3 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/pyside6/doc/gettingstarted-linux.rst')
-rw-r--r--sources/pyside6/doc/gettingstarted-linux.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/pyside6/doc/gettingstarted-linux.rst b/sources/pyside6/doc/gettingstarted-linux.rst
index dbd81c6dd..1f8ed9bcc 100644
--- a/sources/pyside6/doc/gettingstarted-linux.rst
+++ b/sources/pyside6/doc/gettingstarted-linux.rst
@@ -32,11 +32,11 @@ If you don't have libclang already in your system, you can download from the Qt
wget https://download.qt.io/development_releases/prebuilt/libclang/libclang-release_100-based-linux-Rhel7.6-gcc5.3-x86_64.7z
-Extract the files, and leave it on any desired path, and then set these two required
-environment variables::
+Extract the files, and leave it on any desired path, and set the environment
+variable required::
7z x libclang-release_100-based-linux-Rhel7.6-gcc5.3-x86_64.7z
- export CLANG_INSTALL_DIR=$PWD/libclang
+ export LLVM_INSTALL_DIR=$PWD/libclang
Getting PySide
~~~~~~~~~~~~~~