]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
errors.c: clear traceback too.
authorGuido van Rossum <guido@python.org>
Fri, 19 Aug 1994 15:37:11 +0000 (15:37 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 19 Aug 1994 15:37:11 +0000 (15:37 +0000)
Makefile.in: remove lib*.a before creating new one.

Python/Makefile.in

index f61fea800e178b474b56a4508b859c6b5eb9e830..ba69a605caac8c8b599df8a43aeb0fe25e1f31c2 100644 (file)
@@ -20,7 +20,7 @@ DLINCLDIR=    @DLINCLDIR@
 # === Other things that are customizable but not by configure ===
 
 INCLDIR=       $(srcdir)/../Include
-OPT=           -O
+OPT=           @OPT@
 CFLAGS=                $(OPT) -I$(INCLDIR) -I.. $(DEFS)
 
 MKDEP=         mkdep
@@ -52,6 +52,7 @@ SYSLIBS=      -lm
 all:           $(LIB)
 
 $(LIB):                $(OBJS)
+               -rm -f $(LIB)
                $(AR) cr $(LIB) $(OBJS)
                $(RANLIB) $(LIB)