summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-29 10:44:10 (GMT)
committerGuido van Rossum <guido@python.org>1994-08-29 10:44:10 (GMT)
commit0e3da7ba50718820ac7b0e35be82a75334f48d0a (patch)
treefb5cb46e4e721ef10d6016384065fb74fa6abce4 /Parser
parentba941eba679f2ea645e00411a8a40553840e4b54 (diff)
downloadcpython-0e3da7ba50718820ac7b0e35be82a75334f48d0a.zip
cpython-0e3da7ba50718820ac7b0e35be82a75334f48d0a.tar.gz
cpython-0e3da7ba50718820ac7b0e35be82a75334f48d0a.tar.bz2
Makefile: add $(OPT) to linking line
tokenizer.c: move tok_backup call around
Diffstat (limited to 'Parser')
-rw-r--r--Parser/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/Makefile.in b/Parser/Makefile.in
index 899ad92..6a8fc21 100644
--- a/Parser/Makefile.in
+++ b/Parser/Makefile.in
@@ -51,7 +51,7 @@ $(LIB): $(PARSEROBJS)
$(RANLIB) $(LIB)
$(PGEN): $(PGENOBJS) $(LIB)
- $(CC) $(PGENOBJS) $(LIB) -o $(PGEN)
+ $(CC) $(OPT) $(PGENOBJS) $(LIB) -o $(PGEN)
clean:
-rm -f *.o core *~ [@,#]* *.old *.orig *.rej