[Python-checkins] cpython (2.7): - fix paste error (whitespace) from previous commit

matthias.klose python-checkins at python.org
Tue Aug 28 19:11:45 CEST 2012


http://hg.python.org/cpython/rev/f918d4a06c64
changeset:   78786:f918d4a06c64
branch:      2.7
parent:      78783:1a1d097b17e2
user:        Matthias Klose <doko at ubuntu.com>
date:        Tue Aug 28 19:07:08 2012 +0200
summary:
  - fix paste error (whitespace) from previous commit

files:
  Makefile.pre.in |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -407,8 +407,8 @@
 
 # Build the shared modules
 sharedmods: $(BUILDPYTHON)
-        if which getopt >/dev/null 2>&1; then \
-	  mflags=`getopt s $$MAKEFLAGS 2>/dev/null | sed 's/ --.*/ /'`; \
+	if which getopt >/dev/null 2>&1; then \
+	s=`getopt s $$MAKEFLAGS 2>/dev/null | sed 's/ --.*/ /'`; \
 	else \
 	  mflags=" $$MAKEFLAGS "; \
 	fi; \

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list