summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-08-30 15:14:02 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-08-30 15:14:02 (GMT)
commitbdbff73feb32285f223a010e7fdd1b627af686cb (patch)
tree863986a2f4419bf6365e8172351e4c87bb75c4e7 /Mac
parent53d58bb369fbbc1ae93ca423f30b3beb2d83a9a1 (diff)
downloadcpython-bdbff73feb32285f223a010e7fdd1b627af686cb.zip
cpython-bdbff73feb32285f223a010e7fdd1b627af686cb.tar.gz
cpython-bdbff73feb32285f223a010e7fdd1b627af686cb.tar.bz2
Fix for Jaguar: use ln for installing symlinks, install no longer works.
Fix for sh: use : in stead of an empty then clause in an if.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/OSX/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile
index 699407c..8a3d7d3 100644
--- a/Mac/OSX/Makefile
+++ b/Mac/OSX/Makefile
@@ -21,7 +21,7 @@ INSTALLED_PYTHONW=$(APPINSTALLDIR)/Contents/MacOS/python
# Items more-or-less copied from the main Makefile
DIRMODE=755
INSTALL=/usr/bin/install -c
-INSTALL_SYMLINK=/usr/bin/install -l as
+INSTALL_SYMLINK=ln -fs
INSTALL_PROGRAM=${INSTALL}
INSTALL_SCRIPT= ${INSTALL_PROGRAM}
INSTALL_DATA= ${INSTALL} -m 644
@@ -122,7 +122,7 @@ install_Python: $(PYTHON)
install_IDE: $(INSTALLED_PYTHONW)
- @if $(INSTALLED_PYTHONW) -c "import waste"; then ; else \
+ @if $(INSTALLED_PYTHONW) -c "import waste"; then : ; else \
echo PythonIDE needs the \"waste\" extension module; \
echo See Mac/OSX/README for details; \
exit 1; \