Libtool version mismatch

不羁岁月 提交于 2019-12-05 04:44:33

问题


I have downloaded the source of some old project. I'm trying to build it now:

./bootstrap && ./configure

It works fine, but:

make

/bin/sh ../libtool   --mode=compile g++ -DHAVE_CONFIG_H -I. -I..    -W -g -O2 -DDEBUG -MT rcclexer.lo -MD -MP -MF .deps/rcclexer.Tpo -c -o rcclexer.lo rcclexer.cpp
../libtool: line 415: CDPATH: command not found
libtool: Version mismatch error.  This is libtool 2.4.2, but the
libtool: definition of this LT_INIT comes from an older release.
libtool: You should recreate aclocal.m4 with macros from libtool 2.4.2
libtool: and run autoconf again.

p.s. that small project page: http://sourceforge.net/projects/rccparser/

Any help?


回答1:


Something like:

autoreconf -fvi

maybe? I'd hope bootstrap would take care of that though, but it looks like it doesn't.



来源:https://stackoverflow.com/questions/10085554/libtool-version-mismatch

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!