From f2da4ed48b2cda073d6e5ea867eaa65559a69aef Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 9 Apr 1998 19:10:38 +0000 Subject: [PATCH] Add $(LIBS) to the pgen link line. --- Parser/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Parser/Makefile.in b/Parser/Makefile.in index 48bfebc1e39..db61255e2c9 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