diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-13 21:42:23 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-13 21:42:23 (GMT) |
commit | fac1bc615c6585d225ebaeb426471c6adcab21e4 (patch) | |
tree | 2d2d5b3d5eba60c10854d94b90a70e117fc276a6 /Makefile.pre.in | |
parent | 3a6a0431d0a016119b3246748b5aa245ff1ac4fe (diff) | |
download | cpython-fac1bc615c6585d225ebaeb426471c6adcab21e4.zip cpython-fac1bc615c6585d225ebaeb426471c6adcab21e4.tar.gz cpython-fac1bc615c6585d225ebaeb426471c6adcab21e4.tar.bz2 |
make bytearrayobject.o depend on the stringlib #4936
Diffstat (limited to 'Makefile.pre.in')
-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 1b2bcfe..a099f22 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) |