为什么MSYS无法识别AM_INIT_AUTOMAKE中的tar-ustar选项?

发布于 2024-08-28 06:37:07 字数 188 浏览 7 评论 0原文

当我尝试在源上从 MSys 1.11 运行 autogen 时,它总是给出一个名为

configure.ac:9: option 'tar-ustar' not recognized 的

错误有人可以帮我摆脱这个错误吗?

笔记: andtar-v7、tar-ustar、tar-pax。这三个都不起作用。谢谢...

When I'm trying to run autogen from MSys 1.11 on a source, it always giving an error called,

configure.ac:9: option 'tar-ustar' not recognized

Can anyone please help me to get-rid of this error ?

Note:
andtar-v7, tar-ustar, tar-pax. all these 3 didn't work. Thank you...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风轻花落早 2024-09-04 06:37:07

只需从 configure.ac 文件中删除 tar-ustar 选项(查找 AM_INIT_AUTOMAKE 行)或安装更新版本的 Automake (1.9+)。它应该回退到 v7 风格的 tar (尽管无法识别 tar-v7)。

Just remove the tar-ustar option from your configure.ac file (look for an AM_INIT_AUTOMAKE line) or install a newer version of Automake (1.9+). It should fall back to v7-style tar (in spite of not recognizing tar-v7).

宛菡 2024-09-04 06:37:07

tar 是命令 - '-' 和它后面的字母是参数。你想要:

 tar -ustar

注意空间。话虽如此,我不相信 -ustar 是 tar 选项的有效组合,但您应该会收到不同的错误消息。

tar is the command - the '-' and the letters after it is a parameter. You want:

 tar -ustar

notice the space. Having said that, I don't believe that -ustar is a valid combination of tar options, but you should get a different error message for that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文