From 24f4850377370818af9b8c9a708e30a71b5bff7f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 19 Aug 1994 15:37:11 +0000 Subject: [PATCH] errors.c: clear traceback too. Makefile.in: remove lib*.a before creating new one. --- Python/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/Makefile.in b/Python/Makefile.in index f61fea800e1..ba69a605caa 100644 --- a/Python/Makefile.in +++ b/Python/Makefile.in @@ -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)