Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
2d652bac
Commit
2d652bac
authored
Aug 28, 2012
by
Matthias Klose
Browse files
Options
Browse Files
Download
Plain Diff
- Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target.
parents
a0578e94
25b10a28
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
Makefile.pre.in
Makefile.pre.in
+6
-1
No files found.
Makefile.pre.in
View file @
2d652bac
...
...
@@ -475,7 +475,12 @@ $(SYSCONFIGDATA): $(BUILDPYTHON)
# Build the shared modules
sharedmods
:
$(BUILDPYTHON) $(SYSCONFIGDATA)
case
$$
MAKEFLAGS
in
*
s
*
)
quiet
=
-q
;
esac
;
\
if
which
getopt
>/dev/null;
then
\
mflags
=
`
getopt s
$$
MAKEFLAGS 2>/dev/null |
sed
's/ --.*/ /'
`
;
\
else
\
mflags
=
"
$$
MAKEFLAGS "
;
\
fi
;
\
case
$$
mflags
in
"* -s *"
)
quiet
=
-q
;
esac
;
\
$(RUNSHARED)
CC
=
'
$(CC)
'
LDSHARED
=
'
$(BLDSHARED)
'
OPT
=
'
$(OPT)
'
\
$(PYTHON_FOR_BUILD)
$(srcdir)
/setup.py
$$
quiet build
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment