Revert SF patch 659809 -- it causes double options that can cause breakage.

This commit is contained in:
Guido van Rossum 2002-12-31 13:48:29 +00:00
parent f3edea5b90
commit 5ee95474c1
2 changed files with 3 additions and 6 deletions

View File

@ -54,8 +54,8 @@ MAKESETUP= $(srcdir)/Modules/makesetup
# Compiler options
OPT= @OPT@
CFLAGS= $(OPT) @CFLAGS@
CPPFLAGS= -I. -I$(srcdir)/Include @CPPFLAGS@
CFLAGS= $(OPT)
CPPFLAGS= -I. -I$(srcdir)/Include
LDFLAGS= @LDFLAGS@
LDLAST= @LDLAST@
SGI_ABI= @SGI_ABI@
@ -427,7 +427,7 @@ $(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
-$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
$(PGEN): $(PGENOBJS)
$(CC) $(OPT) $(PGENOBJS) $(LDFLAGS) $(LIBS) -o $(PGEN)
$(CC) $(OPT) $(PGENOBJS) $(LIBS) -o $(PGEN)
Parser/grammar.o: $(srcdir)/Parser/grammar.c \
$(srcdir)/Include/token.h \

View File

@ -764,9 +764,6 @@ Tools/Demos
Build
-----
- Makefile.pre.in now adds @CFLAGS@ and @CPPFLAGS@ to their respective
variable definitions.
- On Unix, IDLE is now installed automatically.
- The fpectl module is not built by default; it's dangerous or useless