[Python-checkins] r52484 - python/trunk/Makefile.pre.in

andrew.kuchling python-checkins at python.org
Fri Oct 27 20:15:02 CEST 2006


Author: andrew.kuchling
Date: Fri Oct 27 20:15:02 2006
New Revision: 52484

Modified:
   python/trunk/Makefile.pre.in
Log:
[Patch #1503717] Tiny patch from Chris AtLee to stop a lengthy line from being printed

Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Fri Oct 27 20:15:02 2006
@@ -345,7 +345,7 @@
 
 # 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


More information about the Python-checkins mailing list