Skip to content

Commit

Permalink
Clarify LIBRARY_* & SCRIPT use PREFIX
Browse files Browse the repository at this point in the history
Saying `<build prefix>` now implies `BUILD_PREFIX`, which isn't the
case. AFAIK these have always been constructed based on `PREFIX`, which
is the host environment. Guessing this is just leftover verbiage that
needs a refresh.
  • Loading branch information
jakirkham authored Nov 10, 2023
1 parent d1b96db commit 4f236c8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/source/user-guide/environment-variables.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,15 @@ listed in the following table are defined only on Windows.
- Same as PREFIX, but as a Unix-style path, such as
``/cygdrive/c/path/to/prefix``.
* - LIBRARY_BIN
- ``<build prefix>\Library\bin``.
- ``%PREFIX%\Library\bin``.
* - LIBRARY_INC
- ``<build prefix>\Library\include``.
- ``%PREFIX%\Library\include``.
* - LIBRARY_LIB
- ``<build prefix>\Library\lib``.
- ``%PREFIX%\Library\lib``.
* - LIBRARY_PREFIX
- ``<build prefix>\Library``.
- ``%PREFIX%\Library``.
* - SCRIPTS
- ``<build prefix>\Scripts``.
- ``%PREFIX%\Scripts``.
* - VS_MAJOR
- The major version number of the Visual Studio version
activated within the build, such as ``9``.
Expand Down

0 comments on commit 4f236c8

Please sign in to comment.