summaryrefslogtreecommitdiff
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-12-01 20:50:58 +0100
committerGitHub <noreply@github.com>2017-12-01 20:50:58 +0100
commit0ea395ae964c9cd0f499e2ef0d0030c971201220 (patch)
tree92e86e1b1754d179c8dc4b397f4fa33e020a3aee /Makefile.pre.in
parentebac19dad6263141d5db0a2c923efe049dba99d2 (diff)
downloadcpython-git-0ea395ae964c9cd0f499e2ef0d0030c971201220.tar.gz
bpo-32030: Add Python/pathconfig.c (#4668)
* Factorize code from PC/getpathp.c and Modules/getpath.c to remove duplicated code * rename pathconfig_clear() to _PyPathConfig_Clear() * Inline _PyPathConfig_Fini() in pymain_impl() and then remove it, since it's a oneliner
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index f425a89173..14f6f8abc5 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -337,8 +337,9 @@ PYTHON_OBJS= \
Python/importdl.o \
Python/marshal.o \
Python/modsupport.o \
- Python/mystrtoul.o \
Python/mysnprintf.o \
+ Python/mystrtoul.o \
+ Python/pathconfig.o \
Python/peephole.o \
Python/pyarena.o \
Python/pyctype.o \