summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorJason Tishler <jason@tishler.net>2002-05-15 11:32:35 (GMT)
committerJason Tishler <jason@tishler.net>2002-05-15 11:32:35 (GMT)
commit5cc21aee0ba54300bbb3b68531e1f2ca124a1d20 (patch)
tree33acd57daead705597cb9c4d588105b0948212dc /Makefile.pre.in
parentd1fa3db52de5f337e9aae5f3baad16fe62da2d0f (diff)
downloadcpython-5cc21aee0ba54300bbb3b68531e1f2ca124a1d20.zip
cpython-5cc21aee0ba54300bbb3b68531e1f2ca124a1d20.tar.gz
cpython-5cc21aee0ba54300bbb3b68531e1f2ca124a1d20.tar.bz2
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. :,)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 57848dc..ad11ff8 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -354,7 +354,6 @@ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): $(LIBRARY) $(PYTHO
# 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)