libtools的--tag=cxx command not found错误

最近因为[url=http://storm-project.net/]storm[/url]的原因,需要在各Linux(Debian/Redhat)版本下安装zeromq,这点还真是挺烦人的。

一般来说在最新的发行版上,编译安装还是都比较顺利的,比如RHEL 6或者Debian 6等,所需要依赖的Build软件也都没有问题。

但是在Debian 5上安装时候,出现
[quote] X--tag=CXX: command not found[/quote]错误,究其原因是自动生成的libtool脚本导致的,因此只需要修改一下libtool.m4的配置文件就可以解决问题,比如zeromq需要修改 config/libtool.m4 ,找到
LIBTOOL='$(SHELL) $(top_builddir)/libtool'

将其修改成
LIBTOOL='$(SHELL) /usr/bin/libtool'

你可能感兴趣的:(linux/unix)