diff --git a/npa/configure.ac b/npa/configure.ac index 21bef1f..4d30997 100644 --- a/npa/configure.ac +++ b/npa/configure.ac @@ -45,7 +45,7 @@ AC_ARG_VAR([GENGETOPT], AC_PATH_PROG(GENGETOPT, gengetopt, not found) if test ! -r src/cmdline.h -o ! -r src/cmdline.c then - if "${GENGETOPT}" = "not found" + if test "${GENGETOPT}" = "not found" then AC_MSG_ERROR([Need gengetopt for parsing command line of npa-tool]) fi diff --git a/pcsc-relay/configure.ac b/pcsc-relay/configure.ac index 6951f09..5cdc940 100644 --- a/pcsc-relay/configure.ac +++ b/pcsc-relay/configure.ac @@ -44,7 +44,7 @@ AC_ARG_VAR([GENGETOPT], AC_PATH_PROG(GENGETOPT, gengetopt, not found) if test ! -r src/cmdline.h -o ! -r src/cmdline.c then - if "${GENGETOPT}" = "not found" + if test "${GENGETOPT}" = "not found" then AC_MSG_ERROR([Need gengetopt for parsing command line of pcsc-relay]) fi