From: Guido van Rossum Date: Mon, 9 Apr 2001 22:23:22 +0000 (+0000) Subject: Make on Alpha Tru64 5.1 (as installed on the SF compile farm) doesn't X-Git-Tag: v2.1c1~143 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4e6a7a626de58887c270461a546cde5f435e6178;p=thirdparty%2FPython%2Fcpython.git Make on Alpha Tru64 5.1 (as installed on the SF compile farm) doesn't think that a command starting with '#' is a comment, so move the one comment in such a position (in the rule for building $(LIBRARY)) to a harmless position. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 341c3c92e343..0cc6ee8b0be2 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -297,9 +297,9 @@ buildno: $(PARSER_OBJS) \ else echo 1 >buildno; fi # Build static library +# avoid long command lines, same as LIBRARY_OBJS $(LIBRARY): $(LIBRARY_OBJS) -rm -f $@ - # avoid long command lines, same as LIBRARY_OBJS $(AR) cr $@ Modules/getbuildinfo.o $(AR) cr $@ $(PARSER_OBJS) $(AR) cr $@ $(OBJECT_OBJS)