如何转义 AC_CONFIG_SRCDIR 内带有空格的路径

发布于 2024-09-02 15:38:15 字数 119 浏览 8 评论 0原文

我需要在 AC_CONFIG_SRCDIR 中包含一些包含空格的路径。我该如何逃离他们?例如,如果我有“some file.in”,我应该如何声明它:

AC_CONFIG_SRCDIR[some file]

I need to include some paths in AC_CONFIG_SRCDIR which contain spaces. How should I escape them? For example, if I have "some file.in", how should I declare it in:

AC_CONFIG_SRCDIR[some file]

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

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

发布评论

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

评论(2

或十年 2024-09-09 15:38:15

在 autoconf 2.59 及更早版本中,AC_CONFIG_SRCDIR 中指定的唯一文件的路径名中不能包含特殊字符。在 autoconf 2.60 及更高版本中,这应该有效:

AC_CONFIG_SRCDIR([some file])

In autoconf 2.59 and earlier, you cannot have special characters in the path name of the unique file specified in AC_CONFIG_SRCDIR. In autoconf 2.60 and later, this should work:

AC_CONFIG_SRCDIR([some file])
蝶舞 2024-09-09 15:38:15

AC_CONFIG_SRCDIR([some file]) 工作正常 - 确保您确实使用较新的自动工具,大多数发行版允许并行安装 autoconf-2.59 和 autoconf-2.6x 并有一个包装器。

AC_CONFIG_SRCDIR([some file]) works fine - make sure you really use the newer autotools, most distributions allow to install both autoconf-2.59 and autoconf-2.6x in parallel and have a wrapper around it.

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