mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Add $(LIBS) to the pgen link line.
This commit is contained in:
parent
007bac3b0b
commit
f2da4ed48b
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue