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

This commit is contained in:
Christian Heimes 2012-12-02 08:14:50 +01:00
parent 343d530d67
commit 8ca1d5f762
2 changed files with 5 additions and 2 deletions

View File

@ -441,11 +441,12 @@ platform: $(BUILDPYTHON)
# 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) sharedmods: $(BUILDPYTHON)
@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)' \

View File

@ -706,6 +706,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 #15923: fix a mistake in asdl_c.py that resulted in a TypeError after - Issue #15923: fix a mistake in asdl_c.py that resulted in a TypeError after