linux-integrity.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ima-evm-utils: fix trailing chars from configure script
@ 2019-07-27 12:55 Bruno E. O. Meneguele
  2019-07-30 11:31 ` Mimi Zohar
  0 siblings, 1 reply; 2+ messages in thread
From: Bruno E. O. Meneguele @ 2019-07-27 12:55 UTC (permalink / raw)
  To: linux-integrity, zohar, dmitry.kasatkin

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(-)

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.])])
-- 
2.21.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ima-evm-utils: fix trailing chars from configure script
  2019-07-27 12:55 [PATCH] ima-evm-utils: fix trailing chars from configure script Bruno E. O. Meneguele
@ 2019-07-30 11:31 ` Mimi Zohar
  0 siblings, 0 replies; 2+ messages in thread
From: Mimi Zohar @ 2019-07-30 11:31 UTC (permalink / raw)
  To: Bruno E. O. Meneguele, linux-integrity, dmitry.kasatkin

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-07-30 11:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-27 12:55 [PATCH] ima-evm-utils: fix trailing chars from configure script Bruno E. O. Meneguele
2019-07-30 11:31 ` Mimi Zohar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).