diff options
author | Georg Brandl <georg@python.org> | 2009-04-05 11:11:12 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-05 11:11:12 (GMT) |
commit | 0c0daf059bbc63047c7d0821f6e9caa161a17de0 (patch) | |
tree | f8e570dcb7812cf3ab0c9a1bb6b387c021ccad76 /Makefile.pre.in | |
parent | 2145595f74e6ffec9f79c24ccdf907569844e6e1 (diff) | |
download | cpython-0c0daf059bbc63047c7d0821f6e9caa161a17de0.zip cpython-0c0daf059bbc63047c7d0821f6e9caa161a17de0.tar.gz cpython-0c0daf059bbc63047c7d0821f6e9caa161a17de0.tar.bz2 |
#5606: fix formatter.h dependencies in the Makefile.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 0025307..ba019d2 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -585,8 +585,7 @@ 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 \ - $(BYTESTR_DEPS) \ - $(srcdir)/Objects/stringlib/formatter.h + $(BYTESTR_DEPS) $(OPCODETARGETS_H): $(OPCODETARGETGEN_FILES) $(OPCODETARGETGEN) $(OPCODETARGETS_H) @@ -594,7 +593,8 @@ $(OPCODETARGETS_H): $(OPCODETARGETGEN_FILES) Python/ceval.o: $(OPCODETARGETS_H) Python/formatter_unicode.o: $(srcdir)/Python/formatter_unicode.c \ - $(BYTESTR_DEPS) + $(BYTESTR_DEPS) \ + $(srcdir)/Objects/stringlib/formatter.h ############################################################################ |