[project @ 1997-10-13 09:39:23 by simonm]
authorsimonm <unknown>
Mon, 13 Oct 1997 09:39:23 +0000 (09:39 +0000)
committersimonm <unknown>
Mon, 13 Oct 1997 09:39:23 +0000 (09:39 +0000)
Link ghc to ghc-$(version), not the other way around.  This means that
old versions won't be spammed when a new one is installed.

To go in 3.00

distrib/Makefile-bin.in

index d300e96..f7775e2 100644 (file)
@@ -178,11 +178,15 @@ config-pkgs ::
 
 
 mk-version-symlinks ::
-       @for i in $(VERSION_SYMLINKS_FOR) ""; do \
-         if [ "x$$i" != "x" ]; then \
-            echo "Symlinking $$i to $$i-$(version)"; \
-            (cd bin/$(platform)/$(package)-$(version); $(RM) $$i-$(version); $(LN_S) $$i $$i-$(version) ); \
-         fi;\
+       @for i in $(VERSION_SYMLINKS_FOR) ""; do        \
+         if [ "x$$i" != "x" ]; then                    \
+            echo "Symlinking $$i to $$i-$(version)";   \
+            (cd bin/$(platform)/$(package)-$(version); \
+             $(RM)   $$i-$(version);                   \
+              $(MV)   $$i $$i-$(version);              \
+             $(LN_S) $$i-$(version) $$i                \
+            );                                         \
+         fi;                                           \
        done
 
 in-place ::