2012-04-10 142 views
1

我已经下载了一些旧项目的源代码。我想现在来构建它:Libtool版本不匹配

./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/

任何帮助?

回答

4

喜欢的东西:

autoreconf -fvi 

可能?尽管如此,我希望bootstrap会照顾到这一点,但它看起来并不如此。