我在 Android.mk 中使用了一些 shell 命令,比如
$(shell rm -rfv $(TARGET_OUT)/xxx)
我想看看在构建过程中发出的命令。但是,当我使用任何一个时,输出总是单行
$(info $(shell rm -frv $(TARGET_OUT)/www))
或者
$(info "$(shell rm -frv $(TARGET_OUT)/www)")
结果就像
removed `out/target/product/xxx/system/xxx/xxx.xxx' removed directory: `out/target/product/xxx/system/xxx/xxx'
代替
removed `out/target/product/xxx/system/xxx/xxx.xxx'
removed directory: `out/target/product/xxx/system/xxx/xxx'
有谁知道如何解决这一问题?