在 Makefile 中,如果路径存在,则分配路径变量相关 II

发布于 2024-10-16 07:16:40 字数 633 浏览 1 评论 0原文

我刚刚得到了帮助在Makefile中如果路径存在则分配路径变量相关< /a> 如果条件为真,则 var 的设置可以正常工作。

INFORMIXDIR=$(shell test -d /opt/IBM/informix && echo /opt/IBM/informix )

因此,我连续执行了两个可能的条件

INFORMIXDIR=$(shell test -d /opt/IBM/informix && echo /opt/IBM/informix )
INFORMIXDIR=$(shell test -d /usr/informix && echo /usr/informix )

,但如果条件为 false,shell 命令会返回 null,因此它会再次取消设置,因此它不会在第一个条件为 true 的系统上工作。

有时 INFORMIXDIR 已经在 shell 环境中设置,因此最好也考虑这一点。

I just was helped In Makefile assign path variable dependent if path exists and setting of the var works fine if the condition is true.

INFORMIXDIR=$(shell test -d /opt/IBM/informix && echo /opt/IBM/informix )

So I did both possible conditions in a row

INFORMIXDIR=$(shell test -d /opt/IBM/informix && echo /opt/IBM/informix )
INFORMIXDIR=$(shell test -d /usr/informix && echo /usr/informix )

but the shell command returns kind of null if the condition is false so it's unset again, so it won't work on the system where the first condition is true.

Sometimes INFORMIXDIR is already set in shell environment, so it would be nice to consider this too.

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

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

发布评论

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

评论(1

木槿暧夏七纪年 2024-10-23 07:16:40

可以更改为 $(shell test -d /opt/IBM/informix && echo /opt/IBM/informix || echo ) 吗?或者使用一些后备值并在之后检查它: $(shell test -d /opt/IBM/informix && echo /opt/IBM/informix || echo notset )

Could be changed to $(shell test -d /opt/IBM/informix && echo /opt/IBM/informix || echo )? Or use some fallback value and check for it after: $(shell test -d /opt/IBM/informix && echo /opt/IBM/informix || echo notset )

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