summaryrefslogtreecommitdiff
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorxdegaye <xdegaye@gmail.com>2017-05-27 18:25:03 +0200
committerGitHub <noreply@github.com>2017-05-27 18:25:03 +0200
commitc0364fc7c2693fb070917ee62aeb8d2551710821 (patch)
tree101662f28d5f7d8a6d5a2707b59255d88b788ed1 /Makefile.pre.in
parent346cbd351ee0dd3ab9cb9f0e4cb625556707877e (diff)
downloadcpython-git-c0364fc7c2693fb070917ee62aeb8d2551710821.tar.gz
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.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 21418055aa..0aefcf2a30 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@