summaryrefslogtreecommitdiffstats
path: root/Python/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-26 23:05:49 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-26 23:05:49 (GMT)
commitc2ed415a1b2f85adc41e27639d30f01c2d3a8964 (patch)
tree17c1dfbe5bb43122910026787dd45ed9375f9565 /Python/Makefile.in
parenta46d51d9a44663c7fa0dac7a3b5f0d13ad44cae2 (diff)
downloadcpython-c2ed415a1b2f85adc41e27639d30f01c2d3a8964.zip
cpython-c2ed415a1b2f85adc41e27639d30f01c2d3a8964.tar.gz
cpython-c2ed415a1b2f85adc41e27639d30f01c2d3a8964.tar.bz2
removed frozenmain.o from objects added to library
Diffstat (limited to 'Python/Makefile.in')
-rw-r--r--Python/Makefile.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/Makefile.in b/Python/Makefile.in
index 7641076..f0f8d21 100644
--- a/Python/Makefile.in
+++ b/Python/Makefile.in
@@ -33,7 +33,6 @@ OBJS= \
bltinmodule.o \
ceval.o cgensupport.o compile.o \
errors.o \
- frozenmain.o \
getargs.o getmtime.o graminit.o \
import.o importdl.o \
marshal.o modsupport.o mystrtoul.o \
@@ -49,7 +48,7 @@ SYSLIBS= -lm
# === Rules ===
-all: $(LIB)
+all: $(LIB) frozenmain.o
$(LIB): $& $(OBJS)
-rm -f $(LIB)
tion value='bug_3610026'>bug_3610026 Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-17 15:30:32 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-17 15:30:32 (GMT)
commit44774dc3238ca1e269c6acedcbdfb449780c96f9 (patch)
tree1f924b02e7e59fb0689e28bedd2d654a3f77cc02
parent7b09e3867d1705d3d223ae5383297ee336f03149 (diff)
downloadtcl-44774dc3238ca1e269c6acedcbdfb449780c96f9.zip
tcl-44774dc3238ca1e269c6acedcbdfb449780c96f9.tar.gz
tcl-44774dc3238ca1e269c6acedcbdfb449780c96f9.tar.bz2
Restore bn_mp_radix_size.c to exact copy of libtommath-1.0 version: Since the radix_size of "9" should return 2, not 3. Add test-case to prove that.libtommath_1_0