安装vtpm中的libtpms问题

我在安装libtpms的时候步骤是这样的$ git clone https://github.com/stefanberger/libtpms
$ cd libtpms
$ ./bootstrap.sh
$ ./configure --prefix=/usr --with-openssl 但是在这一步的时候报这个错误怎么解决./configure: line 19232: syntax error near unexpected token cat' ./configure: line 19232:cat >confcache <<_ACEOF' 这个怎么解决呢

这个错误通常发生在configure脚本中有语法错误或缺少依赖项时,就比如说你要确保依赖项已安装,可能是由于缺少某些必要的依赖项而导致configure脚本出错,所以要确保你的系统上已安装所需的依赖项,特别是openssl,可以使用包管理器来安装openssl,例如:apt-get install libssl-dev。