Fix typo libPath -> libpath in library docs (#8717)

The property name for libraries is `libpath` and not `libPath`.
This commit is contained in:
narpfel
2026-05-26 22:09:52 +02:00
committed by GitHub
parent f8f61746b9
commit 49aaeee8b3

View File

@@ -37,14 +37,14 @@ or executables.
For a comprehensive overview of the configuration system, see [Configuration.md](Configuration.md).
- Compiler .ldPath
- Compiler `.ldPath`
- is used for `LD_LIBRARY_PATH` to support running the compiler
- is used for linking (`-Wl,-rpath=` and/or `-L`) during building binaries
- is used for `LD_LIBRARY_PATH` to enable the users's executable to find `.so` files
- Compiler .libPath
- Compiler `.libPath`
- is used for linking (`-Wl,-rpath=` and/or `-L`) during building binaries
- is used for `LD_LIBRARY_PATH` to enable the users's executable to find `.so` files
- Library .libPath
- Library `.libpath`
- is used for linking (`-Wl,-rpath=` and/or `-L`) during building binaries
- is used for `LD_LIBRARY_PATH` to enable the users's executable to find `.so` files (just in case)