Message ID | 20190727125501.30914-1-bmeneg@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ima-evm-utils: fix trailing chars from configure script | expand |
On Sat, 2019-07-27 at 09:55 -0300, Bruno E. O. Meneguele wrote: > Two chars were left in a AC_DEFINE() in configure.ac, leading to an error > message during ./configure call: > > checking for tsspcrread... yes > ./configure: line 9894: ],: command not found > > Signed-off-by: Bruno E. O. Meneguele <bmeneg@redhat.com> Thanks! Mimi
diff --git a/configure.ac b/configure.ac index eedf90e..7747481 100644 --- a/configure.ac +++ b/configure.ac @@ -32,7 +32,7 @@ AC_CHECK_HEADERS(openssl/conf.h) AC_CHECK_PROG(TSSPCRREAD, [tsspcrread], yes, no) if test "x$TSSPCRREAD" = "xyes"; then - AC_DEFINE(HAVE_TSSPCRREAD, 1, [Define to 1 if you have tsspcrread binary installed])], + AC_DEFINE(HAVE_TSSPCRREAD, 1, [Define to 1 if you have tsspcrread binary installed]) fi AC_CHECK_HEADERS(sys/xattr.h, , [AC_MSG_ERROR([sys/xattr.h header not found. You need the c-library development package.])])
Two chars were left in a AC_DEFINE() in configure.ac, leading to an error message during ./configure call: checking for tsspcrread... yes ./configure: line 9894: ],: command not found Signed-off-by: Bruno E. O. Meneguele <bmeneg@redhat.com> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)