Skip to content

Commit 269bf56

Browse files
bpo-45571: use PY_CFLAGS_NODIST for shared Modules/Setup (GH-29161)
(cherry picked from commit f6e8b80) Co-authored-by: Christian Heimes <christian@python.org>
1 parent aa8c344 commit 269bf56

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
``Modules/Setup`` now use ``PY_CFLAGS_NODIST`` instead of ``PY_CFLAGS`` to
2+
compile shared modules.

Modules/makesetup

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
231231
*) src='$(srcdir)/'"$srcdir/$src";;
232232
esac
233233
case $doconfig in
234-
no) cc="$cc \$(CCSHARED) \$(PY_CFLAGS) \$(PY_CPPFLAGS)";;
234+
no) cc="$cc \$(CCSHARED) \$(PY_CFLAGS_NODIST) \$(PY_CPPFLAGS)";;
235235
*)
236236
cc="$cc \$(PY_BUILTIN_MODULE_CFLAGS)";;
237237
esac

0 commit comments

Comments
 (0)