From: Ian Lynagh Date: Sat, 11 Oct 2008 19:10:30 +0000 (+0000) Subject: Correct the "is $bindir in $PATH" test X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=b5978be7cc7e53fe418b23c2767540137da339b2;p=ghc-hetmet.git Correct the "is $bindir in $PATH" test We were testing neq instead of eq --- diff --git a/distrib/Makefile b/distrib/Makefile index ca99c38..dd067b2 100644 --- a/distrib/Makefile +++ b/distrib/Makefile @@ -45,7 +45,7 @@ denounce: @echo ======================================================================= @echo Installation of $(package)-$(version) was successful. @echo -ifneq "$(GREPPED_PATH)" "" +ifeq "$(GREPPED_PATH)" "" @echo To use, add $(bindir) to your PATH. @echo endif