进行目标替换
看起来子 shell 没有检索“$@”的结果,因此没有什么可以进行替换。
%_bust.css: %.css
@echo $(echo $@ | sed s/_bust/$(BUSTER)/g)
It seems that the subshell does not retrieve the result of "$@", so there is nothing to do substitution on.
%_bust.css: %.css
@echo $(echo $@ | sed s/_bust/$(BUSTER)/g)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将
$()
替换为 ``。前者是GNU进行变量扩展。Replace
$()
with ``. The former is GNU make variable expansion.你把事情变得不必要地复杂了。您不需要嵌套的
echo
。You've made it unnecessarily complicated. You don't need a nested
echo
.您还可以使用
make
的文本替换机制。后者是 GNU Make 特有的,在这种特殊情况下不太精确和优雅。
You could also use
make
's text subsitution mechanisms.The latter is specific to GNU Make, and less precise and elegant in this particular case.