如何在 Makefile 中用空格替换单引号
我可以用 GNU makefile 中的任何其他内容替换任何内容。但无法弄清楚如何用空格替换单引号。 任何帮助!
编辑:我尝试过这样的事情:
$(subst \', :, $(text))
在上面我尝试用冒号替换单引号,但它似乎不起作用。
I am able to replace anything with anything else in a GNU makefile. But can't work out how to replace single-quote with spaces.
Any help!
EDIT: I have tried something like this:
$(subst \', :, $(text))
In above I am trying to replace single-quotes with colons, but it doesn't seem to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎按预期工作:
Seems to work as expected: