From: Andrew M. Kuchling Date: Fri, 27 Oct 2006 18:15:02 +0000 (+0000) Subject: [Patch #1503717] Tiny patch from Chris AtLee to stop a lengthy line from being printed X-Git-Tag: v2.6a1~2517 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9627ce116f36ee3d68adcc2cbb8450693198212b;p=python [Patch #1503717] Tiny patch from Chris AtLee to stop a lengthy line from being printed --- diff --git a/Makefile.pre.in b/Makefile.pre.in index fc873ea82e..26320c3912 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