[Python-checkins] CVS: python/dist/src Makefile.pre.in,1.31,1.32

Guido van Rossum gvanrossum@users.sourceforge.net
Mon, 09 Apr 2001 15:23:24 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv5460

Modified Files:
	Makefile.pre.in 
Log Message:
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.


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -r1.31 -r1.32
*** Makefile.pre.in	2001/03/22 00:32:32	1.31
--- Makefile.pre.in	2001/04/09 22:23:22	1.32
***************
*** 298,304 ****
  
  # Build static library
  $(LIBRARY): $(LIBRARY_OBJS)
  	-rm -f $@
- 	# avoid long command lines, same as LIBRARY_OBJS
  	$(AR) cr $@ Modules/getbuildinfo.o
  	$(AR) cr $@ $(PARSER_OBJS)
--- 298,304 ----
  
  # Build static library
+ # avoid long command lines, same as LIBRARY_OBJS
  $(LIBRARY): $(LIBRARY_OBJS)
  	-rm -f $@
  	$(AR) cr $@ Modules/getbuildinfo.o
  	$(AR) cr $@ $(PARSER_OBJS)