summaryrefslogtreecommitdiffstats
path: root/Modules/Makefile.pre.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-01-27 17:53:11 (GMT)
committerGuido van Rossum <guido@python.org>1999-01-27 17:53:11 (GMT)
commit54ecc3d24f52ae45ca54a24167e434915c88b60f (patch)
tree2bc2d15f1e6a6178a992a9ce0b4975697f1ef71b /Modules/Makefile.pre.in
parentb5cebfe164fbf6c862e8aa9fb91628d1b8cf76be (diff)
downloadcpython-54ecc3d24f52ae45ca54a24167e434915c88b60f.zip
cpython-54ecc3d24f52ae45ca54a24167e434915c88b60f.tar.gz
cpython-54ecc3d24f52ae45ca54a24167e434915c88b60f.tar.bz2
Patches by William Lewis for Nextstep descendants.
Diffstat (limited to 'Modules/Makefile.pre.in')
-rw-r--r--Modules/Makefile.pre.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in
index 4d306e7..4ea78c5 100644
--- a/Modules/Makefile.pre.in
+++ b/Modules/Makefile.pre.in
@@ -100,7 +100,7 @@ MAINOBJ= python.o
SYSLIBS= $(LIBM) $(LIBC)
LIBRARY= ../libpython$(VERSION).a
-REALLIBRARY= ../@REALLIBRARY@
+LDLIBRARY= ../@LDLIBRARY@
# === Rules ===
@@ -123,7 +123,7 @@ EXE=
# This target is used by the master Makefile to link the final binary.
link: $(MAINOBJ)
$(LINKCC) $(LDFLAGS) $(LINKFORSHARED) $(MAINOBJ) \
- $(LIBRARY) $(MODLIBS) $(LIBS) $(SYSLIBS) -o python $(LDLAST)
+ $(LDLIBRARY) $(MODLIBS) $(LIBS) $(SYSLIBS) -o python $(LDLAST)
mv python$(EXE) ../python$(EXE)
clean: