From: simonm Date: Mon, 13 Oct 1997 09:39:23 +0000 (+0000) Subject: [project @ 1997-10-13 09:39:23 by simonm] X-Git-Tag: Approx_2487_patches~1393 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=50bf84a3a19fd3e88a4382a91979a45f315f5e63;p=ghc-hetmet.git [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 --- 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 ::