Kaydet (Commit) 98cd0f26 authored tarafından Christian Heimes's avatar Christian Heimes

Issue #16593: Have BSD 'make -s' do the right thing, thanks to Daniel Shahaf

...@@ -478,11 +478,12 @@ pybuilddir.txt: $(BUILDPYTHON) ...@@ -478,11 +478,12 @@ pybuilddir.txt: $(BUILDPYTHON)
$(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars $(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars
# Build the shared modules # Build the shared modules
# MAKEFLAGS are sorted and normalized. Under GNU make the 's' for # Under GNU make, MAKEFLAGS are sorted and normalized; the 's' for
# -s, --silent or --quiet is always the first char. # -s, --silent or --quiet is always the first char.
# Under BSD make, MAKEFLAGS might be " -s -v x=y".
sharedmods: $(BUILDPYTHON) pybuilddir.txt sharedmods: $(BUILDPYTHON) pybuilddir.txt
@case "$$MAKEFLAGS" in \ @case "$$MAKEFLAGS" in \
s*) quiet="-q";; \ *\ -s*|s*) quiet="-q";; \
*) quiet="";; \ *) quiet="";; \
esac; \ esac; \
$(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \ $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
......
...@@ -277,6 +277,8 @@ Tests ...@@ -277,6 +277,8 @@ Tests
Build Build
----- -----
- Issue #16593: Have BSD 'make -s' do the right thing, thanks to Daniel Shahaf
- Issue #16262: fix out-of-src-tree builds, if mercurial is not installed. - Issue #16262: fix out-of-src-tree builds, if mercurial is not installed.
- Issue #15298: ensure _sysconfigdata is generated in build directory, not - Issue #15298: ensure _sysconfigdata is generated in build directory, not
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment