diff options
author | Ian Lynagh <igloo@earth.li> | 2007-09-11 20:22:02 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-09-11 20:22:02 +0000 |
commit | 03243ed63f52a5f0fe0964fb2e777ffe12010ff1 (patch) | |
tree | 73284fc635acd8c3443358b5e0cc21d59e3e5d96 /distrib/Makefile | |
parent | 98ef138ce390fafa42c4c7afa5ec29438a164ec7 (diff) | |
download | haskell-03243ed63f52a5f0fe0964fb2e777ffe12010ff1.tar.gz |
make in-place has bitrotted, so don't advertise or support it
Diffstat (limited to 'distrib/Makefile')
-rw-r--r-- | distrib/Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/distrib/Makefile b/distrib/Makefile index f05899605b..ee1b962f79 100644 --- a/distrib/Makefile +++ b/distrib/Makefile @@ -3,14 +3,15 @@ include Makefile-vars .PHONY: in-place mk-version-symlinks install -in-place :: - @if test -x "./post-inplace-script" ; then \ - echo "Running project-specific post-inplace script ..." ; \ - ./post-inplace-script $(platform) `pwd` \ - $(package)-$(version); \ - echo "Done" ; \ - fi - @echo "Finished configuring..to use, add `pwd`/bin/$(platform) to your PATH." +# This has bitrotted: +#in-place :: +# @if test -x "./post-inplace-script" ; then \ +# echo "Running project-specific post-inplace script ..." ; \ +# ./post-inplace-script $(platform) `pwd` \ +# $(package)-$(version); \ +# echo "Done" ; \ +# fi +# @echo "Finished configuring..to use, add `pwd`/bin/$(platform) to your PATH." install :: $(INSTALL_DIR) $(bindir) |