diff options
author | Matthew Feickert <matthew.feickert@cern.ch> | 2023-01-11 17:11:47 -0600 |
---|---|---|
committer | Matthew Feickert <matthew.feickert@cern.ch> | 2023-01-11 17:14:22 -0600 |
commit | 5f9df7bb74e5215ba649fe3d448f3455bce2aa50 (patch) | |
tree | a5106045748ef879c89e189c73a3a5b1e860c550 | |
parent | 79673cb607b871d955a9a984d3488296d48dc5bc (diff) | |
download | python-setuptools-git-5f9df7bb74e5215ba649fe3d448f3455bce2aa50.tar.gz |
docs: Remove repeated mention of LDFLAGS environment variable
* The first instance of LDFLAGS is removed instead of the second
to match the style of the preceding environment variables.
-rw-r--r-- | docs/userguide/ext_modules.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/userguide/ext_modules.rst b/docs/userguide/ext_modules.rst index 9119830c..a59599b2 100644 --- a/docs/userguide/ext_modules.rst +++ b/docs/userguide/ext_modules.rst @@ -76,8 +76,8 @@ compiler and linker options from various sources: * the ``sysconfig`` variables ``CC``, ``CXX``, ``CCSHARED``, ``LDSHARED``, and ``CFLAGS``, * the environment variables ``CC``, ``CPP``, - ``CXX``, ``LDSHARED`` and ``LDFLAGS``, - ``CFLAGS``, ``CPPFLAGS``, ``LDFLAGS``, + ``CXX``, ``LDSHARED`` and ``CFLAGS``, + ``CPPFLAGS``, ``LDFLAGS``, * the ``Extension`` attributes ``include_dirs``, ``library_dirs``, ``extra_compile_args``, ``extra_link_args``, ``runtime_library_dirs``. |