Fix for fcc629208842

BSD's make doesn't support some of the features.
This commit is contained in:
Christian Heimes 2012-09-07 02:24:58 +02:00
parent bc71f2cf98
commit f84dcffcb9
1 changed files with 7 additions and 9 deletions

View File

@ -189,14 +189,6 @@ BUILDPYTHON= python$(BUILDEXE)
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 ===
@ -416,9 +408,15 @@ platform: $(BUILDPYTHON)
# 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)
@case "$$MAKEFLAGS" in \
s*) quiet="-q";; \
*) quiet="";; \
esac; \
$(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
./$(BUILDPYTHON) -E $(srcdir)/setup.py $(QUIET) build
./$(BUILDPYTHON) -E $(srcdir)/setup.py $$quiet build
# Build static library
# avoid long command lines, same as LIBRARY_OBJS