diff options
author | Ian Lynagh <igloo@earth.li> | 2008-10-11 19:10:30 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-10-11 19:10:30 +0000 |
commit | b5978be7cc7e53fe418b23c2767540137da339b2 (patch) | |
tree | 52edd3bf6a3060cc0a74cfa950e0b74587d37c55 /distrib | |
parent | ae4bf23ecc1552e18623670b12eba6ba81afa711 (diff) | |
download | haskell-b5978be7cc7e53fe418b23c2767540137da339b2.tar.gz |
Correct the "is $bindir in $PATH" test
We were testing neq instead of eq
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distrib/Makefile b/distrib/Makefile index ca99c38a14..dd067b20b2 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 |