summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-08-04 17:59:56 +0000
committerGuido van Rossum <guido@python.org>1998-08-04 17:59:56 +0000
commit0584aaeade89290a373fe39364b612750eff7094 (patch)
treec299c6c5f383851c04b30b8a916b80776fb407f6 /Makefile.in
parent038bea7a393f06c7718e30f8ae6430622f94f15b (diff)
downloadcpython-0584aaeade89290a373fe39364b612750eff7094.tar.gz
Changes for BeOS, QNX and long long, by Chris Herborth.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index bfc2cd5402..14eab14b83 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -134,6 +134,9 @@ INSTALL= @srcdir@/install-sh -c
INSTALL_PROGRAM=${INSTALL} -m $(EXEMODE)
INSTALL_DATA= ${INSTALL} -m $(FILEMODE)
+# Use this to make a link between python$(VERSION) and python in $(BINDIR)
+LN=@LN@
+
# --with-PACKAGE options for configure script
# e.g. --with-readline --with-svr5 --with-solaris --with-thread
# (see README for an explanation)
@@ -237,7 +240,7 @@ bininstall: altbininstall
then rm -f $(BINDIR)/python; \
else true; \
fi
- (cd $(BINDIR); ln python$(VERSION)$(EXE) python$(EXE))
+ (cd $(BINDIR); $(LN) python$(VERSION)$(EXE) python$(EXE))
# Install the interpreter with $(VERSION) affixed
# This goes into $(exec_prefix)