所以我正在尝试为PDEBuild安装Multistrap但是我收到一个错误,说Ubuntu默认版本的多线程(2.1.6ubuntu)小于所需的(2.1.9+)。有谁知道我如何安装新版本?我尝试添加lenny Debian repo,但它似乎不起作用。
答案 0 :(得分:1)
最干净的方法是安装pbuilder,从here(.dsc和.tar.gz)下载多线程源包,然后构建包:
sudo apt-get install pbuilder
mkdir -p /tmp/build_multistrap && cd /tmp/build_multistrap
wget https://launchpad.net/debian/experimental/+source/multistrap/2.1.9/+files/multistrap_2.1.9.dsc https://launchpad.net/debian/experimental/+source/multistrap/2.1.9/+files/multistrap_2.1.9.tar.gz
sudo pbuilder build multistrap_2.1.9.dsc
cd /var/cache/pbuilder/result
sudo dpkg -i multistrap_2.1.9_all.deb
rm -rf /tmp/build_multistrap