From: Guido van Rossum Date: Tue, 23 Aug 1994 13:38:57 +0000 (+0000) Subject: * Parser/tokenizer.c: backup over illegal newline in string X-Git-Tag: v1.1~166 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d250ee2413ebaa699b6d720dd1ab937b7901b6b0;p=thirdparty%2FPython%2Fcpython.git * Parser/tokenizer.c: backup over illegal newline in string literal (for "completeness" test) * */Makefile*.in: remove lib*.a before adding to it --- diff --git a/Parser/Makefile.in b/Parser/Makefile.in index 4c1e1fab5b3c..899ad9289bb3 100644 --- a/Parser/Makefile.in +++ b/Parser/Makefile.in @@ -17,7 +17,7 @@ DEFS= @DEFS@ # === Other things that are customizable but not by configure === INCLDIR= $(srcdir)/../Include -OPT= -O +OPT= @OPT@ CFLAGS= $(OPT) -I$(INCLDIR) -I.. $(DEFS) MKDEP= mkdep @@ -46,6 +46,7 @@ LIB= libParser.a all: $(LIB) $(PGEN) $(LIB): $(PARSEROBJS) + -rm -f $(LIB) $(AR) cr $(LIB) $(PARSEROBJS) $(RANLIB) $(LIB)