diff options
author | Xiang Zhang <angwerzx@126.com> | 2016-12-15 16:41:12 +0800 |
---|---|---|
committer | Xiang Zhang <angwerzx@126.com> | 2016-12-15 16:41:12 +0800 |
commit | 81553858cb8e5dd7a08c7e8953ec399455dbe1bc (patch) | |
tree | 5c6fe57f115ce39442cd7c3b5d3b3c1e7eeb18b5 /Makefile.pre.in | |
parent | 989519add09449166ba5188ca98cdef99f28aa01 (diff) | |
download | cpython-81553858cb8e5dd7a08c7e8953ec399455dbe1bc.tar.gz |
Issue #28930: Add a Makefile rule for bytes_methods.c.
Add a dependency to stringlib to make sure that bytes_methods.c is
recompiled if stringlib is modified.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index cd7d33d230..48b5180b07 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -858,8 +858,8 @@ UNICODE_DEPS = \ $(srcdir)/Objects/stringlib/unicode_format.h \ $(srcdir)/Objects/stringlib/unicodedefs.h +Objects/bytes_methods.o: $(srcdir)/Objects/bytes_methods.c $(BYTESTR_DEPS) Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS) - Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS) Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c $(UNICODE_DEPS) |