如何转义 AC_CONFIG_SRCDIR 内带有空格的路径
我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 autoconf 2.59 及更早版本中,AC_CONFIG_SRCDIR 中指定的唯一文件的路径名中不能包含特殊字符。在 autoconf 2.60 及更高版本中,这应该有效:
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])
工作正常 - 确保您确实使用较新的自动工具,大多数发行版允许并行安装 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.