From: Matthias Klose Date: Tue, 28 Aug 2012 17:07:08 +0000 (+0200) Subject: - fix paste error (whitespace) from previous commit X-Git-Tag: v2.7.4rc1~607 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=555b9e07ed0be5bb64a3fee9aa627a9418e0c1f5;p=thirdparty%2FPython%2Fcpython.git - fix paste error (whitespace) from previous commit --- diff --git a/Makefile.pre.in b/Makefile.pre.in index d4b0e1c4dde4..02d47dd9fdb4 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -407,8 +407,8 @@ platform: $(BUILDPYTHON) # 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; \