diff options
author | Matthias Klose <doko@ubuntu.com> | 2012-08-28 17:07:38 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2012-08-28 17:07:38 (GMT) |
commit | 2412c93a6068221686397c26b129215eac024e9c (patch) | |
tree | 70fb7623e4acf45cb7e171b089e8213706d585fe | |
parent | 25b10a28f51bc6125946c5fad0c3cfad38227928 (diff) | |
download | cpython-2412c93a6068221686397c26b129215eac024e9c.zip cpython-2412c93a6068221686397c26b129215eac024e9c.tar.gz cpython-2412c93a6068221686397c26b129215eac024e9c.tar.bz2 |
- fix paste error (whitespace) from previous commit
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 62db9c1..de08382 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -436,7 +436,7 @@ platform: $(BUILDPYTHON) # Build the shared modules sharedmods: $(BUILDPYTHON) - if which getopt >/dev/null; then \ + if which getopt >/dev/null; then \ mflags=`getopt s $$MAKEFLAGS 2>/dev/null | sed 's/ --.*/ /'`; \ else \ mflags=" $$MAKEFLAGS "; \ |