mirror of https://github.com/python/cpython
Add $(LIBS) to the pgen link line.
This commit is contained in:
parent
007bac3b0b
commit
f2da4ed48b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue