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
b676727d
Commit
b676727d
authored
Sep 08, 2012
by
Christian Heimes
Browse files
Options
Browse Files
Download
Plain Diff
Fix for fcc629208842
BSD's make doesn't support some of the features.
parents
a99c7ded
f84dcffc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
Makefile.pre.in
Makefile.pre.in
+7
-9
No files found.
Makefile.pre.in
View file @
b676727d
...
...
@@ -189,14 +189,6 @@ BUILDPYTHON= python$(BUILDEXE)
PROFILE_TASK
=
$(srcdir)
/Tools/pybench/pybench.py
-n
2
--with-gc
--with-syscheck
#PROFILE_TASK= $(srcdir)/Lib/test/regrtest.py
# Find the silent flag in MAKEFLAGS. The flags are sorted and normalized
# by GNU make. The 's' flag is always in the first word.
ifneq
(,$(findstring s,$(word 1,$(MAKEFLAGS))))
QUIET
=
-q
else
QUIET
=
endif
# === Definitions added by makesetup ===
...
...
@@ -416,9 +408,15 @@ platform: $(BUILDPYTHON)
# Build the shared modules
# MAKEFLAGS are sorted and normalized. Under GNU make the 's' for
# -s, --silent or --quiet is always the first char.
sharedmods
:
$(BUILDPYTHON)
@
case
"
$$
MAKEFLAGS"
in
\
s
*
)
quiet
=
"-q"
;;
\
*
)
quiet
=
""
;;
\
esac
;
\
$(RUNSHARED)
CC
=
'
$(CC)
'
LDSHARED
=
'
$(BLDSHARED)
'
OPT
=
'
$(OPT)
'
\
./
$(BUILDPYTHON)
-E
$(srcdir)
/setup.py
$
(QUIET)
build
./
$(BUILDPYTHON)
-E
$(srcdir)
/setup.py
$
$
quiet
build
# Build static library
# avoid long command lines, same as LIBRARY_OBJS
...
...
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