diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-10-21 05:37:00 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-10-21 05:37:00 (GMT) |
commit | 4510e6de9d38987c5b00ce416da19fe9ffc2dde9 (patch) | |
tree | 4cdd80cbb86933dfbfa6edefb1f6966afa6b3183 /Makefile.pre.in | |
parent | a83636247e3de138e017a04474236ef5aa8b4f4a (diff) | |
download | cpython-4510e6de9d38987c5b00ce416da19fe9ffc2dde9.zip cpython-4510e6de9d38987c5b00ce416da19fe9ffc2dde9.tar.gz cpython-4510e6de9d38987c5b00ce416da19fe9ffc2dde9.tar.bz2 |
mark dtrace stubs as static inline; remove stubs
C99 inline semantics don't work everywhere. (https://bugs.python.org/issue28092)
We don't want these to have external visibility anyway.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 407658e..8e97948 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -355,7 +355,6 @@ PYTHON_OBJS= \ Python/compile.o \ Python/codecs.o \ Python/dynamic_annotations.o \ - Python/dtrace_stubs.o \ Python/errors.o \ Python/frozenmain.o \ Python/future.o \ |