summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-10-27 18:15:02 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-10-27 18:15:02 (GMT)
commit9627ce116f36ee3d68adcc2cbb8450693198212b (patch)
tree20417cdbdc575867d68f8f65e1236e6e2475a904 /Makefile.pre.in
parent738446f44d6d37d920d00fa99bbb1a7084bd537b (diff)
downloadcpython-9627ce116f36ee3d68adcc2cbb8450693198212b.zip
cpython-9627ce116f36ee3d68adcc2cbb8450693198212b.tar.gz
cpython-9627ce116f36ee3d68adcc2cbb8450693198212b.tar.bz2
[Patch #1503717] Tiny patch from Chris AtLee to stop a lengthy line from being printed
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index fc873ea..26320c3 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -345,7 +345,7 @@ platform: $(BUILDPYTHON)
# Build the shared modules
sharedmods: $(BUILDPYTHON)
- case $$MAKEFLAGS in \
+ @case $$MAKEFLAGS in \
*-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
esac