configure.ac: fix reading of HLINT environment variable
authorDato Simó <dato@google.com>
Wed, 5 Dec 2012 15:16:02 +0000 (15:16 +0000)
committerDato Simó <dato@google.com>
Wed, 5 Dec 2012 19:04:59 +0000 (19:04 +0000)
configure.ac advertised that the HLINT environment variable could be set to
specify the path to the 'hlint' tool. However, HLINT was being initialized
to "no" inside configure.ac, which broke this usage.

Signed-off-by: Dato Simó <dato@google.com>
Reviewed-by: Iustin Pop <iustin@google.com>

configure.ac

index 30136d9..f53e422 100644 (file)
@@ -629,7 +629,6 @@ fi
 AC_SUBST(HTOOLS_APIDOC)
 
 # Check for hlint
-HLINT=no
 AC_ARG_VAR(HLINT, [hlint path])
 AC_PATH_PROG(HLINT, [hlint], [])
 if test -z "$HLINT"; then