diff options
author | xdegaye <xdegaye@gmail.com> | 2017-05-27 16:25:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-27 16:25:03 (GMT) |
commit | c0364fc7c2693fb070917ee62aeb8d2551710821 (patch) | |
tree | 101662f28d5f7d8a6d5a2707b59255d88b788ed1 /Makefile.pre.in | |
parent | 346cbd351ee0dd3ab9cb9f0e4cb625556707877e (diff) | |
download | cpython-c0364fc7c2693fb070917ee62aeb8d2551710821.zip cpython-c0364fc7c2693fb070917ee62aeb8d2551710821.tar.gz cpython-c0364fc7c2693fb070917ee62aeb8d2551710821.tar.bz2 |
bpo-20210: Support the *disabled* marker in Setup files (GH-132)
Extension modules listed after the *disabled* marker are not built at all,
neither by the Makefile nor by setup.py.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 2141805..0aefcf2 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -20,9 +20,10 @@ # === Variables set by makesetup === -MODNAMES= _MODNAMES_ -MODOBJS= _MODOBJS_ -MODLIBS= _MODLIBS_ +MODBUILT_NAMES= _MODBUILT_NAMES_ +MODDISABLED_NAMES= _MODDISABLED_NAMES_ +MODOBJS= _MODOBJS_ +MODLIBS= _MODLIBS_ # === Variables set by configure VERSION= @VERSION@ |