From 265c8da0465f42c930b2f629ed525bb2cb7af0ba Mon Sep 17 00:00:00 2001 From: Frank Morgner Date: Fri, 31 Jul 2015 21:18:44 +0200 Subject: [PATCH] test for strings with `test` --- npa/configure.ac | 2 +- pcsc-relay/configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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