[commit: ghc] master: Fix `make help` (4842dde)

git at git.haskell.org git at git.haskell.org
Tue Apr 22 04:40:37 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/4842dde46b28b2c48fc65003b27403a4ed7acfcd/ghc

>---------------------------------------------------------------

commit 4842dde46b28b2c48fc65003b27403a4ed7acfcd
Author: Kyle J. Van Berendonck <kvanberendonck at gmail.com>
Date:   Sat Mar 29 20:59:58 2014 +1100

    Fix `make help`
    
    Signed-off-by: Austin Seipp <austin at well-typed.com>


>---------------------------------------------------------------

4842dde46b28b2c48fc65003b27403a4ed7acfcd
 Makefile |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 6872cb3..e5a7fb8 100644
--- a/Makefile
+++ b/Makefile
@@ -30,10 +30,10 @@ default : all
 
 # For help, type 'make help'
 .PHONY: help
-help :
+help:
 	@cat MAKEHELP
 
-ifneq "$(findstring clean,$(MAKECMDGOALS))" ""
+ifneq "$(filter clean help,$(MAKECMDGOALS))" ""
 -include mk/config.mk
 else
 include mk/config.mk



More information about the ghc-commits mailing list