diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-13 21:53:28 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-13 21:53:28 (GMT) |
commit | 9ae3220c06cb2e08cbbfdc268c6f44c6af748c26 (patch) | |
tree | 102f270ca6fb8d441ffb62b2e92f9d42f84bf22e /Makefile.pre.in | |
parent | a54c9090ac183a8b5a964fa25f648be15525b0a7 (diff) | |
download | cpython-9ae3220c06cb2e08cbbfdc268c6f44c6af748c26.zip cpython-9ae3220c06cb2e08cbbfdc268c6f44c6af748c26.tar.gz cpython-9ae3220c06cb2e08cbbfdc268c6f44c6af748c26.tar.bz2 |
make bytearrayobject.o depend on the stringlib headers #4936
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 7cd0b4d..05efc7e 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -559,9 +559,9 @@ BYTESTR_DEPS = \ $(srcdir)/Objects/stringlib/unicodedefs.h \ $(srcdir)/Objects/stringlib/localeutil.h -Objects/stringobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS) +Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS) -Objects/bytesobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS) +Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS) Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \ $(BYTESTR_DEPS) \ |