diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-13 21:42:23 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-13 21:42:23 +0000 |
commit | fac1bc615c6585d225ebaeb426471c6adcab21e4 (patch) | |
tree | 2d2d5b3d5eba60c10854d94b90a70e117fc276a6 | |
parent | 3a6a0431d0a016119b3246748b5aa245ff1ac4fe (diff) | |
download | cpython-git-fac1bc615c6585d225ebaeb426471c6adcab21e4.tar.gz |
make bytearrayobject.o depend on the stringlib #4936
-rw-r--r-- | Makefile.pre.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 1b2bcfe053..a099f2210b 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -564,6 +564,9 @@ STRINGLIB_HEADERS= \ Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \ $(STRINGLIB_HEADERS) +Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c \ + $(STRINGLIB_HEADERS) + Objects/stringobject.o: $(srcdir)/Objects/stringobject.c \ $(STRINGLIB_HEADERS) |