diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-01-21 23:50:16 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-01-21 23:50:16 +0000 |
commit | 19d3afc23d2c81320700d44a0c6d59648b1a62d3 (patch) | |
tree | aae039c3b4c085ad8d7c277fd33ccb7eb2925144 /Makefile.pre.in | |
parent | Reformat some ugly code. (diff) | |
download | cpython-19d3afc23d2c81320700d44a0c6d59648b1a62d3.tar.gz cpython-19d3afc23d2c81320700d44a0c6d59648b1a62d3.tar.bz2 cpython-19d3afc23d2c81320700d44a0c6d59648b1a62d3.zip |
Make's MAKEFLAGS variable is set to a string containing the single-letter
arguments to Make. This means there are no hyphens. Fix the '-s' check to
silence distutils to now work.
Diffstat (limited to 'Makefile.pre.in')
-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 a56c91c2f51..ede3bd8d482 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -358,7 +358,7 @@ platform: $(BUILDPYTHON) # Build the shared modules sharedmods: $(BUILDPYTHON) @case $$MAKEFLAGS in \ - *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \ + *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 |