From 3f91469f327d8d9f3b27e0b67c54a4f47ad845c1 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Wed, 11 Jan 2017 18:14:49 +0100 Subject: [PATCH] CONFIGURE: Update help message for jslint Resolves: https://fedorahosted.org/freeipa/ticket/6604 Reviewed-By: Christian Heimes Reviewed-By: Tomas Krizek --- configure.ac | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index c84c1bc37..6cd3a8904 100644 --- a/configure.ac +++ b/configure.ac @@ -463,11 +463,12 @@ AM_CONDITIONAL([WITH_PYLINT], [test "x${PYLINT}" != "xno"]) AC_ARG_WITH([jslint], - AS_HELP_STRING([--with-jslint=path to jsl], - [path to JavaScript lint]), + AS_HELP_STRING([--with-jslint=[FILE]], + [path to JavaScript linter. Default is autodetection of + utility "jsl" ]), dnl --without-jslint will set JSLINT=no - [JSLINT=$with_jslint], - [AC_PATH_PROG([JSLINT], [jsl])] + [JSLINT=$with_jslint], + [AC_PATH_PROG([JSLINT], [jsl])] ) if test "x${JSLINT}" == "x"; then AC_MSG_ERROR([cannot find JS lint])