diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2003-07-13 10:10:42 (GMT) |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2003-07-13 10:10:42 (GMT) |
| commit | 6702d8af7103bb59024efe1ec9868c2c2a01739c (patch) | |
| tree | 8be03ac8981036fd774281679807afa5cda2aa8c | |
| parent | f33222833ce36faff851f27aaf6d9cbe7320a474 (diff) | |
| download | cpython-6702d8af7103bb59024efe1ec9868c2c2a01739c.zip cpython-6702d8af7103bb59024efe1ec9868c2c2a01739c.tar.gz cpython-6702d8af7103bb59024efe1ec9868c2c2a01739c.tar.bz2 | |
Patch #770245: Pass LDFLAGS to pgen creation.
| -rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index d7de18e..a91e36c 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -435,7 +435,7 @@ $(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT) -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C) $(PGEN): $(PGENOBJS) - $(CC) $(OPT) $(PGENOBJS) $(LIBS) -o $(PGEN) + $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN) Parser/grammar.o: $(srcdir)/Parser/grammar.c \ $(srcdir)/Include/token.h \ |
