]> granicus.if.org Git - python/commitdiff
[Patch #1503717] Tiny patch from Chris AtLee to stop a lengthy line from being printed
authorAndrew M. Kuchling <amk@amk.ca>
Fri, 27 Oct 2006 18:15:02 +0000 (18:15 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Fri, 27 Oct 2006 18:15:02 +0000 (18:15 +0000)
Makefile.pre.in

index fc873ea82e2a53fe4ee345ed8a06c95177041b41..26320c39120604ef9d8fdff7f07c1904bd0519da 100644 (file)
@@ -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