File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -601,11 +601,15 @@ $(srcdir)/Modules/_blake2/blake2s_impl.c: $(srcdir)/Modules/_blake2/blake2b_impl
601601# Under GNU make, MAKEFLAGS are sorted and normalized; the 's' for
602602# -s, --silent or --quiet is always the first char.
603603# Under BSD make, MAKEFLAGS might be " -s -v x=y".
604+ # Ignore macros passed by GNU make, passed after --
604605sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o
605- @case "$$MAKEFLAGS" in \
606+ @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'` " in \
606607 *\ -s*|s*) quiet="-q";; \
607608 *) quiet="";; \
608609 esac; \
610+ echo "$(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
611+ _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \
612+ $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build"; \
609613 $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
610614 _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \
611615 $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build
Original file line number Diff line number Diff line change 1+ Enable the verbose build for extension modules, when GNU make is passed
2+ macros on the command line.
You can’t perform that action at this time.
0 commit comments