From 50bf84a3a19fd3e88a4382a91979a45f315f5e63 Mon Sep 17 00:00:00 2001 From: simonm Date: Mon, 13 Oct 1997 09:39:23 +0000 Subject: [PATCH] [project @ 1997-10-13 09:39:23 by simonm] 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 | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index d300e96..f7775e2 100644 --- a/distrib/Makefile-bin.in +++ b/distrib/Makefile-bin.in @@ -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 :: -- 1.7.10.4