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 | |
parent | 98ef138ce390fafa42c4c7afa5ec29438a164ec7 (diff) | |
download | haskell-03243ed63f52a5f0fe0964fb2e777ffe12010ff1.tar.gz |
make in-place has bitrotted, so don't advertise or support it
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/Makefile | 17 | ||||
-rw-r--r-- | distrib/configure-bin.ac | 3 |
2 files changed, 10 insertions, 10 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) diff --git a/distrib/configure-bin.ac b/distrib/configure-bin.ac index 8d9ea90d27..ba0803336e 100644 --- a/distrib/configure-bin.ac +++ b/distrib/configure-bin.ac @@ -157,7 +157,6 @@ AC_CONFIG_FILES(Makefile-vars extra-gcc-opts) AC_OUTPUT echo "****************************************************" -echo "Configuration done, ready to either 'make install'" -echo "or 'make in-place'." +echo "Configuration done, ready to 'make install'" echo "(see README and INSTALL files for more info.)" echo "****************************************************" |