|  | 
 
| 用的是2.6的header和nptl, 从stage1开始安装的 在emerge gnome的时候, 到fam这个包的时候出错, 如下:
 *** Gentoo sanity check failed! ***
 *** libtool.m4 and ltmain.sh have a version mismatch! ***
 *** (libtool.m4 = 1.5.10, ltmain.sh = 1.4) ***
 Please run:
 
 libtoolize --copy --force
 
 if appropriate, please contact the maintainer of this
 package (or your distribution) for help.
 
 网上搜了一下, 改了一下fam的ebuild
 加了
 src_compile {
 aclocal
 libtoolize --copy --force
 autoconf
 econf || die "econf fail"
 libtoolize --copy --force
 autoconf
 econf || die "econf fail"
 emake || die "emake fail"
 }
 或者是在
 src_unpack里面加入aclocal libtoolize -c -f autoconf
 上面提示的错误都已经不出现了
 但是编译到某一阶段
 重复出现waiting for Client.o.lock to be remove和waiting for fam.o.lock to be rem
 ove
 估计是死循环了
 
 请大侠们指点指点
 这种情况下怎么做才能把fam这个包编译安装呢?
 thx
 | 
 |