]> granicus.if.org Git - python/commitdiff
Fix for Jaguar: use ln for installing symlinks, install no longer works.
authorJack Jansen <jack.jansen@cwi.nl>
Fri, 30 Aug 2002 15:14:02 +0000 (15:14 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Fri, 30 Aug 2002 15:14:02 +0000 (15:14 +0000)
Fix for sh: use : in stead of an empty then clause in an if.

Mac/OSX/Makefile

index 699407c62e8b3ff7eda44d586896365b385d3a9d..8a3d7d37b5d28e20d36c9c0bc813ebcfeaf6354e 100644 (file)
@@ -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; \