From c0364fc7c2693fb070917ee62aeb8d2551710821 Mon Sep 17 00:00:00 2001 From: xdegaye Date: Sat, 27 May 2017 18:25:03 +0200 Subject: 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. --- Makefile.pre.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Makefile.pre.in') 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@ -- cgit v1.2.1