在 AOSP Android.mk 文件中,如何执行命令并在命令失败时使构建失败?

In an AOSP Android.mk file, how do I execute a command and fail the build if the command fails?

在 Android.mk 文件中,我有以下行执行 bash 脚本:

$(info $(shell ($(LOCAL_PATH)/build.sh)))

但是,如果命令失败,构建将继续而不是退出。

在这种情况下如何使整个构建失败?

转储 stdout,测试退出状态,失败时出错:

ifneq (0,$(shell >/dev/null command doesnotexist ; echo $$?))
  $(error "not good")
endif

这是失败的样子:

[user@host]$ make 
/bin/sh: doesnotexist: command not found
Makefile:6: *** not good.  Stop.
[user@host]$

如果你想看stdout,那么你可以把它保存到一个变量中,只测试lastword:

FOOBAR_OUTPUT := $(shell echo "I hope this works" ; command foobar ; echo $$?)
$(info $$(FOOBAR_OUTPUT) == $(FOOBAR_OUTPUT))
$(info $$(lastword $$(FOOBAR_OUTPUT)) == $(lastword $(FOOBAR_OUTPUT)))
ifneq (0,$(lastword $(FOOBAR_OUTPUT)))
  $(error not good)
endif

这给出了

$ make
/bin/sh: foobar: command not found
$(FOOBAR_OUTPUT) == I hope this works 127
$(lastword $(FOOBAR_OUTPUT)) == 127
Makefile:12: *** not good.  Stop.