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

Fix for fcc629208842

BSD's make doesn't support some of the features.
parents 693320ad 5f381210
......@@ -202,14 +202,6 @@ HOST_GNU_TYPE= @host@
PROFILE_TASK= $(srcdir)/Tools/pybench/pybench.py -n 2 --with-gc --with-syscheck
#PROFILE_TASK= $(srcdir)/Lib/test/regrtest.py
# Find the silent flag in MAKEFLAGS. The flags are sorted and normalized
# by GNU make. The 's' flag is always in the first word.
ifneq (,$(findstring s,$(word 1,$(MAKEFLAGS))))
QUIET=-q
else
QUIET=
endif
# === Definitions added by makesetup ===
......@@ -482,9 +474,15 @@ $(SYSCONFIGDATA): $(BUILDPYTHON)
$(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars
# Build the shared modules
# MAKEFLAGS are sorted and normalized. Under GNU make the 's' for
# -s, --silent or --quiet is always the first char.
sharedmods: $(BUILDPYTHON) $(SYSCONFIGDATA)
@case "$$MAKEFLAGS" in \
s*) quiet="-q";; \
*) quiet="";; \
esac; \
$(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
$(PYTHON_FOR_BUILD) $(srcdir)/setup.py $(QUIET) build
$(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build
# Build static library
# avoid long command lines, same as LIBRARY_OBJS
......
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