This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author John Muth
Recipients John Muth, wbond
Date 2019-10-17.18:32:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1571337143.14.0.0255582335561.issue37839@roundup.psfhosted.org>
In-reply-to
Content
I ran into the same issue. This patch fixed it for me.

diff --git a/Modules/makesetup b/Modules/makesetup
index eac97ad134..0fbac03833 100755
--- a/Modules/makesetup
+++ b/Modules/makesetup
@@ -133,6 +133,7 @@ sed -e 's/[         ]*#.*//' -e '/^[        ]*$/d' |
 
                # Output DEFS in reverse order so first definition overrides
                case $line in
+               *-D*) ;;
                *=*)    DEFS="$line$NL$DEFS"; continue;;
                'include '*)    DEFS="$line$NL$DEFS"; continue;;
                '*noobjects*')
History
Date User Action Args
2019-10-17 18:32:23John Muthsetrecipients: + John Muth, wbond
2019-10-17 18:32:23John Muthsetmessageid: <1571337143.14.0.0255582335561.issue37839@roundup.psfhosted.org>
2019-10-17 18:32:23John Muthlinkissue37839 messages
2019-10-17 18:32:22John Muthcreate