From: Georg Brandl Date: Sun, 5 Apr 2009 11:11:12 +0000 (+0000) Subject: #5606: fix formatter.h dependencies in the Makefile. X-Git-Tag: v3.1b1~382 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0c0daf059bbc63047c7d0821f6e9caa161a17de0;p=thirdparty%2FPython%2Fcpython.git #5606: fix formatter.h dependencies in the Makefile. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 0025307a7a73..ba019d207484 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 ############################################################################