我下载了一些旧项目的源代码。我现在正在尝试构建它:
./bootstrap && ./configure它工作得很好,但是:
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.附注:那个小项目页面:http://sourceforge.net/projects/rccparser/
有什么帮助吗?
发布于 2012-04-11 04:14:14
类似于:
autoreconf -fvi也许吧?我希望bootstrap能解决这个问题,但是看起来它不能。
https://stackoverflow.com/questions/10085554
复制相似问题