diff options
author | Guido van Rossum <guido@python.org> | 1998-04-09 19:10:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-09 19:10:38 (GMT) |
commit | f2da4ed48b2cda073d6e5ea867eaa65559a69aef (patch) | |
tree | 64e72f9f8f84cebccdff6e7af535fd36b1ba1e7c | |
parent | 007bac3b0b69fe3ff17adeeb0cfbe6a1eda8b886 (diff) | |
download | cpython-f2da4ed48b2cda073d6e5ea867eaa65559a69aef.zip cpython-f2da4ed48b2cda073d6e5ea867eaa65559a69aef.tar.gz cpython-f2da4ed48b2cda073d6e5ea867eaa65559a69aef.tar.bz2 |
Add $(LIBS) to the pgen link line.
-rw-r--r-- | Parser/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Parser/Makefile.in b/Parser/Makefile.in index 48bfebc..db61255 100644 --- a/Parser/Makefile.in +++ b/Parser/Makefile.in @@ -14,6 +14,7 @@ RANLIB= @RANLIB@ AR= @AR@ DEFS= @DEFS@ +LIBS= @LIBS@ # === Other things that are customizable but not by configure === @@ -56,7 +57,7 @@ add2lib: $(OBJS) touch add2lib $(PGEN): $(PGENOBJS) - $(CC) $(OPT) $(PGENOBJS) -o $(PGEN) + $(CC) $(OPT) $(PGENOBJS) $(LIBS) -o $(PGEN) clean: -rm -f *.o core *~ [@,#]* *.old *.orig *.rej add2lib |