注意!需要pax存档卷更改

时间:2015-02-11 09:05:28

标签: build pax

我正在尝试在我的Ubuntu 14.04 LTS上构建fastjet-3.0.1

运行以下内容:

./configure --enable-allcxxplugins

我收到以下消息:

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... 
ATTENTION! pax archive volume change required.
Ready for archive volume: 1
Input archive name or "." to quit pax.
Archive name >

我尝试查找Pax是什么以及如何处理此错误,但没有找到任何有用的内容。对此的任何帮助都会很棒 !感谢。

2 个答案:

答案 0 :(得分:1)

我遇到同样的问题,我通过运行“sudo ./configure”来解决它。

答案 1 :(得分:1)

感谢JW彼得森的评论,我可以用pax(1)的包装来解决这个问题:

~/local/mypax/pax

#!/bin/sh
/usr/bin/pax -O "$@"

这必须早于pax(1)环境变量中的基础$PATH命令:

export PATH=$HOME/local/mypax:$PATH