Commit 4fc00826 authored by Christian Heimes's avatar Christian Heimes

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

parent 80e9eedd
......@@ -410,11 +410,12 @@ platform: $(BUILDPYTHON)
# 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.
# Under BSD make, MAKEFLAGS might be " -s -v x=y".
sharedmods: $(BUILDPYTHON)
@case "$$MAKEFLAGS" in \
s*) quiet="-q";; \
*\ -s*|s*) quiet="-q";; \
*) quiet="";; \
esac; \
$(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
......
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