Correct the "is $bindir in $PATH" test
authorIan Lynagh <igloo@earth.li>
Sat, 11 Oct 2008 19:10:30 +0000 (19:10 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 11 Oct 2008 19:10:30 +0000 (19:10 +0000)
We were testing neq instead of eq

distrib/Makefile

index ca99c38..dd067b2 100644 (file)
@@ -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