Skip to content
Snippets Groups Projects
Commit 50bf84a3 authored by Simon Marlow's avatar Simon Marlow
Browse files

[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
parent a9ac7387
No related branches found
No related tags found
No related merge requests found
......@@ -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 ::
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment