|
|
出错信息:
tar: This does not look like a tar archive
failure unpacking libtool-2.2.6a.tar.lzma
google一下,发现有个这样的文章 Problem Solution for Gentoo [Coreutils-6.10-r1.tar.lzma cannot unpack]
解决办法是:
add the following code to /usr/lib/portage/bin/ebuild.sh behind line 384
1.
lzma)
2.
if [ "${y}" == "tar" ]; then
3.
lzma -dc "${srcdir}${x}" | tar xof - ${tar_opts}
4.
assert "$myfail"
5.
else
6.
lzma -dc "${srcdir}${x}" > ${x%.*} || die "$myfail"
7.
fi
8.
;;
我的ebuild.sh里面已经有这段代码,但是没法解决这个问题。
我用的是funtoo。 |
|