[Python-checkins] python/dist/src Makefile.pre.in,1.83,1.84

jlt63@sourceforge.net jlt63@sourceforge.net
Wed, 15 May 2002 04:32:37 -0700


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

Modified Files:
	Makefile.pre.in 
Log Message:
Patch #553678: Cygwin Makefile.pre.in vestige patch

This patch removes a vestige part of the Cygwin make rules 
that didn't quite make it over during the flattening of the 
Makefiles. In its current form, it creates a def file but 
incorrectly calls it libpython$(VERSION).dll.a which 
immediately gets overwritten by the next command. 
Obviously, this is useless. It appears, it was useless 
in the old nested Makefile structure too. :,)


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.83
retrieving revision 1.84
diff -C2 -d -r1.83 -r1.84
*** Makefile.pre.in	8 May 2002 08:59:59 -0000	1.83
--- Makefile.pre.in	15 May 2002 11:32:35 -0000	1.84
***************
*** 355,359 ****
  # This rule builds the Cygwin Python DLL
  libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
- 	dlltool --export-all --output-def $@ $^
  	$(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
  		$(LIBS) $(MODLIBS) $(SYSLIBS)
--- 355,358 ----