diff options
author | Barry Warsaw <barry@python.org> | 2000-05-26 19:04:27 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2000-05-26 19:04:27 +0000 |
commit | c7858c0a1b09fc6ce7f92b7c694ce56f7624fff7 (patch) | |
tree | 4c9cabc836c87be1c212b7d9692166c564bc6827 /Python | |
parent | 10aaceaac995f6e0c3b587e304f93153a3da71c2 (diff) | |
download | cpython-c7858c0a1b09fc6ce7f92b7c694ce56f7624fff7.tar.gz |
Added exceptions.o to the list of object to build in this subdir.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/Makefile.in b/Python/Makefile.in index 1f2789fadd..fd5fd1b0fe 100644 --- a/Python/Makefile.in +++ b/Python/Makefile.in @@ -36,7 +36,7 @@ SHELL= /bin/sh # === Fixed definitions === AROBJS= \ - bltinmodule.o \ + bltinmodule.o exceptions.o \ ceval.o compile.o codecs.o \ errors.o \ frozen.o frozenmain.o \ @@ -104,6 +104,7 @@ dynload_os2.o: dynload_os2.c dynload_shlib.o: dynload_shlib.c dynload_stub.o: dynload_stub.c dynload_win.o: dynload_win.c +exceptions.o: exceptions.c errors.o: errors.c fmod.o: fmod.c frozen.o: frozen.c |